풀이
내림차순으로 정렬되어 최댓값부터 나오는 q
오름차순으로 정렬되어 최솟값부터 나오는 q2
최댓값을 삭제할땐 q에서 pop해주고, 최솟값을 삭제할때 q2에서 pop해준다.
들어온 횟수와 삭제된 횟수가 같다면 q와 q2를 모두 비워준다. (이미 모든 원소가 삭제된 것이므로)
#include <string>
#include <vector>
#include <queue>
#include <iostream>
using namespace std;
vector<int> solution(vector<string> operations) {
vector<int> answer;
int cnt = 0;
priority_queue<int>q;
priority_queue<int,vector<int>,greater<int>>q2;
int re_cnt=0;
for(auto op : operations){
if(op[0]=='I'){
cnt++;
q.push(stoi(op.substr(2)));
q2.push(stoi(op.substr(2)));
}
//최솟값 삭제
if(!q2.empty() && op[0]=='D' && op[2]=='-'){
q2.pop();
re_cnt++;
}
//최댓값 삭제
if(!q.empty() && op[0]=='D' && op[2]!='-'){
q.pop();
re_cnt++;
}
if(re_cnt==cnt){
while(!q.empty())
q.pop();
while(!q2.empty())
q2.pop();
}
}
if(cnt-re_cnt==0){
answer.push_back(0);
answer.push_back(0);
}
else{
answer.push_back(q.top());
answer.push_back(q2.top());
}
return answer;
}
다른 사람의 풀이
원소가 들어올때 cnt를 증가하고 삭제할땐 감소해서 cnt 로만 원소가 남았는지 확인했다.
stringstream ss(operations[i]);
ss >> char형 변수
ss >> number형 변수
이렇게 입력을 받아서 ss에서 char와 number를 할당받았다.
'알고리즘 > 프로그래머스' 카테고리의 다른 글
[프로그래머스] 가장 큰 수 c++ (0) | 2024.01.16 |
---|---|
[프로그래머스] k번째수 c++ (0) | 2024.01.16 |
[프로그래머스] 디스크 컨트롤러 c++ (0) | 2024.01.14 |
[프로그래머스] 주식가격 c++ (1) | 2024.01.11 |
[프로그래머스] 다리를 지나는 트럭 c++ (0) | 2024.01.08 |