[프로그래머스] 이중우선순위큐
이중우선순위큐
Algorithm: 힙 Created: Apr 16, 2020 1:06 AM DoubleChk: No Type: 프로그래머스 level: 3 link: https://programmers.co.kr/learn/courses/30/lessons/42628
문제 설명
이중 우선순위 큐는 다음 연산을 할 수 있는 자료구조를 말합니다.
이중 우선순위 큐가 할 연산 operations가 매개변수로 주어질 때, 모든 연산을 처리한 후 큐가 비어있으면 [0,0] 비어있지 않으면 [최댓값, 최솟값]을 return 하도록 solution 함수를 구현해주세요.
제한사항
- operations는 길이가 1 이상 1,000,000 이하인 문자열 배열입니다.
- operations의 원소는 큐가 수행할 연산을 나타냅니다.
- 원소는 “명령어 데이터” 형식으로 주어집니다.- 최댓값/최솟값을 삭제하는 연산에서 최댓값/최솟값이 둘 이상인 경우, 하나만 삭제합니다.
- 빈 큐에 데이터를 삭제하라는 연산이 주어질 경우, 해당 연산은 무시합니다.
입출력 예
입출력 예 설명
16을 삽입 후 최댓값을 삭제합니다. 비어있으므로 [0,0]을 반환합니다.7,5,-5를 삽입 후 최솟값을 삭제합니다. 최대값 7, 최소값 5를 반환합니다.
#include <string>
#include <vector>
#include <queue>
#include <algorithm>
using namespace std;
deque <int> dq;
vector<int> solution(vector<string> operations) {
vector<int> answer;
for(auto oper : operations){
char order = oper[0];
string num = oper.substr(2, oper.length()-1);
int number = atoi(num.c_str());
if(order == 'I'){
dq.push_back(number);
sort(dq.begin(), dq.end());
}else if(order == 'D' && number == 1 && !dq.empty()){
dq.pop_back();
}else if(order == 'D' && number == -1 && !dq.empty()){
dq.pop_front();
}
}
if(dq.empty()){
answer.push_back(0);
answer.push_back(0);
}else{
answer.push_back(dq.back());
answer.push_back(dq.front());
}
return answer;
}
-
문제 풀이
deque를 만들어서 push 할 때마다 sorting을 해 준다.
연산을 모두 수행 후에 dq가 비었다면 0, 0을 answer에 푸쉬 해 주고,
비어있지 않다면 가장 큰 값과 작은값을 푸쉬 해 준다.