[Python] 1865. 동철이의 일분배 def recur(idx, total): global answer if idx == n: # 일 배분 다 했다면 answer = max(answer, total) # 최대 확률로 갱신 return if total Algorithm/SW Expert Academy 2021.10.07
[Python] 5209. 최소 생산 비용 def recur(idx, total): global answer if idx == n: # 공장 다 돌았다면 answer = min(answer, total) # 최소비용으로 갱신 return if answer Algorithm/SW Expert Academy 2021.10.07
[Python] 5208. 전기버스2 코드 1 def recur(now, cnt, battery): global answer battery -= 1 # 배터리 감소 if now == n-1: # 마지막 정류장까지 온 경우 answer = min(answer, cnt) # 작은 횟수로 갱신 return if answer Algorithm/SW Expert Academy 2021.10.07