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