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

hdu 4006 The kth great number

时间:2015-04-22 22:21:58      阅读:105      评论:0      收藏:0      [点我收藏+]

标签:

优先队列,真是水的不行~

保持队列里只有K个元素即可

#include<iostream>
#include<queue>
using namespace std;
priority_queue<int, vector<int>, greater<int> >mapp;
int n,k;
string cmd;
int main()
{
	while(cin>>n>>k)
	{
		while(mapp.size()) mapp.pop();
		while(n--)
		{
			cin>>cmd;
			if(cmd=="I")
			{
				int x;
				cin>>x;
				if(mapp.size()<k) mapp.push(x);
				else
				{
					if(x>mapp.top()) mapp.push(x),mapp.pop(); 
				} 
			}
			else cout<<mapp.top()<<endl;
		} 
	}
	return 0;
}


hdu 4006 The kth great number

标签:

原文地址:http://blog.csdn.net/zafkiel_nightmare/article/details/45199739

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