0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-20 14:25:24 +00:00
OI-codes/Luogu/problem/P3378/P3378.cpp
2021-01-02 15:30:52 +08:00

26 lines
442 B
C++

#include<bits/stdc++.h>
using namespace std;
int main() {
priority_queue<int, vector<int>, greater<int> > q;
int n;
cin >> n;
while(n--) {
int op;
cin >> op;
if(op == 1) {
int x;
cin >> x;
q.push(x);
}
else if(op == 2) {
cout << q.top() << endl;
}
else if(op == 3) {
q.pop();
}
}
return 0;
}