https://velog.io/@kwt0124/%EC%9A%B0%EC%84%A0%EC%88%9C%EC%9C%84%ED%81%90
#include <string>
#include <vector>
#include <queue>
using namespace std;
int solution(vector<int> scoville, int K) {
int answer = 0;
priority_queue<int, vector<int>, greater<int>>pq(scoville.begin(), scoville.end());
while(pq.top() < K)
{
int notHot1 = pq.top();
pq.pop();
int notHot2 = 0;
if(!pq.empty())
{
notHot2 = pq.top();
pq.pop();
}
else
{
return -1;
}
answer++;
pq.push(notHot1 + notHot2 * 2);
}
return answer;
}