728x90
https://www.acmicpc.net/problem/1927
우선순위 큐
최소 힙이라 비교로직만 바꿔주면 된다.
less<> 대신 greater<>로
이번엔 greater<>자리에 비교연산만 구현해서 넣어봤다. 오름차순이라 a < b 로 하면 될줄 알았는데 a > b 였다..
소스코드
#include <iostream>
#include <queue>
#include <vector>
using namespace std;
struct cmp{
bool operator()(int a, int b){
return a > b; //주의 greater
}
};
int main(){
ios::sync_with_stdio(false);
cin.tie(NULL);
priority_queue<int, vector<int>, cmp> heap;
// priority_queue<int, vector<int>, greater<>> heap;
int t;
cin >> t;
int x;
for(int i = 0 ; i < t ; i++){
cin >> x;
if(x == 0){
if(heap.empty()){
cout << "0\n";
}else{
cout << heap.top() << "\n";
heap.pop();
}
}else{
heap.push(x);
}
}
}
728x90
'알고리즘 문제풀이' 카테고리의 다른 글
[백준 11656] 알고리즘 98일차 : 접미사 배열 (0) | 2021.07.02 |
---|---|
[백준 11286] 알고리즘 97일차 : 절댓값 힙 (0) | 2021.07.01 |
[백준 11279] 알고리즘 95일차 : 최대 힙 (0) | 2021.06.29 |
[백준 11066] 알고리즘 94일차 : 파일 합치기 (0) | 2021.06.28 |
[프로그래머스] 튜플 (0) | 2021.05.07 |