码迷,mamicode.com
首页 > 其他好文 > 详细

P3378 【模板】堆

时间:2020-06-29 18:42:21      阅读:76      评论:0      收藏:0      [点我收藏+]

标签:csharp   com   else   targe   print   problem   scanf   har   scan   

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\n",q.top());
		} else {
			q.pop();
		}
	}
	return 0;
}

 

P3378 【模板】堆

标签:csharp   com   else   targe   print   problem   scanf   har   scan   

原文地址:https://www.cnblogs.com/LightyaChoo/p/13209299.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!