티스토리 뷰

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <iostream>
#include <cstdio>
#include <queue>
using namespace std;
 
class AbsHeap {
private:
    int num;
public:
    AbsHeap(int num) : num(num) {};
    int getNum() {
        return this->num;
    }
};
 
bool operator>(AbsHeap h1, AbsHeap h2) {
    if (abs(h1.getNum()) == abs(h2.getNum()))
        return h1.getNum() > h2.getNum();
    else
        return abs(h1.getNum()) > abs(h2.getNum());
}
 
int main() {
    int N;
    scanf("%d"&N);
    priority_queue<AbsHeap, vector<AbsHeap>, greater<AbsHeap>> pqueue;
    for (int i = 0; i < N; i++) {
        int x;
        scanf("%d"&x);
        if (x != 0)
            pqueue.push(AbsHeap(x));
        else if (pqueue.size() > 0) {
            AbsHeap h = pqueue.top();
            pqueue.pop();
            printf("%d\n", h.getNum());
        }
        else
            printf("0\n");
    }
}
cs
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함