Pagini recente » Cod sursa (job #2254440) | Cod sursa (job #472537) | Cod sursa (job #594792) | Cod sursa (job #303864) | Cod sursa (job #1290618)
#include<cstdio>
#include<fstream>
#include<iostream>
#include<iomanip>
#include<algorithm>
#include<vector>
#include<bitset>
#include<deque>
#include<queue>
#include<set>
#include<map>
#include<cmath>
#include<cstring>
#include<ctime>
#include<cstdlib>
#include<unordered_map>
#define ll long long
#define pb push_back
#define mp make_pair
#define pii pair<int,int>
#define pll pair<ll,ll>
using namespace std;
const int nmax = 200005;
int m, op, i, cnt, k, a[nmax], h[nmax], poz[nmax];
void heapup(int s)
{
int f = s / 2;
if(!f) return;
if(a[h[f]] > a[h[s]])
{
swap(poz[h[f]], poz[h[s]]);
swap(h[f], h[s]);
heapup(f);
}
}
void heapdown(int f)
{
int s = f * 2;
if(s > cnt) return;
if(s < cnt && a[h[s + 1]] < a[h[s]]) s++;
if(a[h[f]] > a[h[s]])
{
swap(poz[h[f]], poz[h[s]]);
swap(h[f], h[s]);
heapdown(s);
}
}
int main()
{
freopen("heapuri.in", "r", stdin);
freopen("heapuri.out", "w", stdout);
scanf("%d", &m);
for(; m; m--)
{
scanf("%d", &op);
if(op == 1)
{
scanf("%d", &a[++i]);
h[++cnt] = i;
poz[i] = cnt;
heapup(cnt);
}
else if(op == 2)
{
scanf("%d", &k);
poz[h[cnt]] = poz[k];
h[poz[k]] = h[cnt];
cnt--;
heapdown(poz[k]);
}
else printf("%d\n", a[h[1]]);
}
return 0;
}