mirror of
https://git.sb/baoshuo/OI-codes.git
synced 2024-11-05 06:38:48 +00:00
24 lines
431 B
C++
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;
|
|
}
|