프로그래머스 - 힙 - 더 맵게
2021. 3. 21. 11:03ㆍAlgorithm
programmers.co.kr/learn/courses/30/lessons/42626
import java.util.PriorityQueue;
public class 더_맵게 {
public static void main(String[] args) {
더_맵게 o = new 더_맵게();
System.out.println(o.solution(new int[]{1, 2, 3, 9, 10, 12}, 1000000000));
}
public int solution(int[] scoville, int K) {
PriorityQueue<Integer> q = new PriorityQueue<>();
for(int i=0; i<scoville.length; i++) {
q.offer(scoville[i]);
}
int count = 0;
while (q.peek() < K) {
Integer food1 = q.poll();
Integer food2 = q.poll();
if(food2 == null) {
return -1;
}
Integer newFood = food1 + (food2 * 2);
q.offer(newFood);
count++;
}
return count;
}
}
알고리즘
- 힙
- 우선순위 큐 활용문제
'Algorithm' 카테고리의 다른 글
프로그래머스 - 힙 - 이중우선순위큐 (0) | 2021.03.23 |
---|---|
프로그래머스 - 힙 - 디스크 컨트롤러 (0) | 2021.03.22 |
프로그래머스 - 큐 - 기능개발 (0) | 2021.03.18 |
프로그래머스 - 큐 - 다리를 지나는 트럭 (0) | 2021.03.16 |
프로그래머스 - DFS - 단어 변환 (0) | 2021.03.15 |