0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 21:25:24 +00:00
OI-codes/Luogu/P3378/P3378.cpp

24 lines
431 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;
}