https://programmers.co.kr/learn/courses/30/lessons/42626
정렬하고 최소값을 찾을때는 최소힙으로 풀어야 시간복잡도 낮출 수 있다
import heapq
def solution(scoville, K):
answer = 0
heapq.heapify(scoville)
while True:
min1 = heapq.heappop(scoville)
if min1 >= K:
break
elif len(scoville) == 0:
answer = -1
break
min2 = heapq.heappop(scoville)
_sum = min1 + 2*min2
heapq.heappush(scoville, _sum)
answer += 1
return answer
'알고리즘 > 프로그래머스(Python)' 카테고리의 다른 글
[알고리즘] 프로그래머스 여행경로 / python (0) | 2020.02.22 |
---|---|
[알고리즘] 프로그래머스 N으로 표현 / python (0) | 2020.02.20 |
[알고리즘] 프로그래머스 큰 수 만들기 / python (0) | 2020.02.16 |
[알고리즘] 프로그래머스 가장 큰 수 / python (0) | 2020.02.15 |
[알고리즘] 프로그래머스 체육복 / python (0) | 2020.02.15 |