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

HDU 4006: The kth great number

时间:2017-08-08 23:07:29      阅读:177      评论:0      收藏:0      [点我收藏+]

标签:syn   std   set   ++   names   ack   php   ble   ase   

The kth great number

///@author Sycamore
///@date 8/8/2017
#include<bits/stdc++.h>
using namespace std;
int main()
{
	ios::sync_with_stdio(false);
	cin.tie(0);
	int n, k;
	while (cin >> n >> k)
	{
		char ch;
		int t;
		multiset<int>s;
		while (n--)
		{
			cin >> ch;
			if (ch == ‘I‘)
			{
				cin >> t;
				s.insert(t);
				if (s.size() > k)s.erase(s.begin());
			}
			else cout <<*s.begin()<<endl ;
		}
	}
	return 0;
}

 

HDU 4006: The kth great number

标签:syn   std   set   ++   names   ack   php   ble   ase   

原文地址:http://www.cnblogs.com/zjnu/p/7308945.html

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