쌓고 쌓다

[프로그래머스] 더 맵게 C++ 풀이 본문

알고리즘/프로그래머스

[프로그래머스] 더 맵게 C++ 풀이

승민아 2022. 7. 16. 21:29

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

 

프로그래머스

코드 중심의 개발자 채용. 스택 기반의 포지션 매칭. 프로그래머스의 개발자 맞춤형 프로필을 등록하고, 나와 기술 궁합이 잘 맞는 기업들을 매칭 받으세요.

programmers.co.kr

전체 코드

#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;
    for(int i=0;i<scoville.size();i++)
    {
        pq.push(scoville[i]);
    }
    
    while(pq.size()>1)
    {
        if(pq.top()>=K)
            break;
        
        int mix=0;
        mix+=pq.top();  pq.pop();
        mix+=pq.top()*2;    pq.pop();
        pq.push(mix);
        answer++;

    }
    
    if(pq.top()<K)
        answer=-1;
        
        
    return answer;
}

 

우선순위 큐를 이용해 간단히 구현해서 풀면 되는 문제였습니다.

그냥 vector를 이용해 매번 정렬을하는 방식으로 푼다면 효율성에서 시간초과가 납니다.

Comments