컴공생의 다이어리

[프로그래머스] 더 맵게 - 파이썬(Python) 본문

Development/Algorithm & Coding Test

[프로그래머스] 더 맵게 - 파이썬(Python)

컴공 K 2022. 6. 8. 00:01

[프로그래머스] 더 맵게 - 파이썬(Python)

 

 

 

import heapq

def solution(scoville, K):
    heapq.heapify(scoville)
    count = 0
    while len(scoville) >= 2 and scoville[0] < K:
        first, second = heapq.heappop(scoville), heapq.heappop(scoville)
        heapq.heappush(scoville, first + (second * 2))
        count += 1
    return count if scoville[0] >= K else -1

혹은

import heapq

def solution(scoville, K):
    heapq.heapify(scoville)
    count = 0
    while scoville[0] < K:
        try:
            first, second = heapq.heappop(scoville), heapq.heappop(scoville)
            heapq.heappush(scoville, first + (second * 2))
            count += 1
        except IndexError:
            return -1
    return count

 

 

 

https://programmers.co.kr/learn/courses/30/lessons/42626

 

코딩테스트 연습 - 더 맵게

매운 것을 좋아하는 Leo는 모든 음식의 스코빌 지수를 K 이상으로 만들고 싶습니다. 모든 음식의 스코빌 지수를 K 이상으로 만들기 위해 Leo는 스코빌 지수가 가장 낮은 두 개의 음식을 아래와 같

programmers.co.kr

 

728x90
Comments