P3378 模板堆
Posted lightyachoo
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了P3378 模板堆相关的知识,希望对你有一定的参考价值。
P3378 【模板】堆
#include<bits/stdc++.h> using namespace std; priority_queue<int,vector<int>,greater<int> >q;//小根堆 int n; int op; int x; int main(){ scanf("%d",&n); while(n--){ scanf("%d",&op); if(op==1){ scanf("%d",&x); q.push(x); } else if(op==2){ printf("%d ",q.top()); } else { q.pop(); } } return 0; }
以上是关于P3378 模板堆的主要内容,如果未能解决你的问题,请参考以下文章