더 맵게

고장난·2021년 5월 23일
0

코딩 스터디

목록 보기
6/15
#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<>> cook;
    for(int i=0;i<scoville.size();i++){
        cook.push(scoville[i]);
    }// 우선순위큐에 대입
    
    while(cook.top()<K){
        if(cook.size()<=1){
            answer=-1;
            break;
        }
        int s=cook.top();
        cook.pop();
        int s2=cook.top();
        cook.pop();
        cook.push(s+s2*2);
        answer++;
    }
    
    return answer;
}
profile
훈련중

0개의 댓글

관련 채용 정보