码迷,mamicode.com
首页 > Windows程序 > 详细

hdu 1509 Windows Message Queue

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

标签:

考察优先队列,不过要注意优先队列的优先排序是不稳定排序,解决方法和自定义排序一样,再添加一个参数即可

#include<iostream>
#include<queue>
using namespace std;
string cmd;
struct stu
{
	string name;
	int p,lv,num;
	friend bool operator<(stu x,stu y)
	{
		if(x.lv==y.lv) return x.num>y.num;
		return x.lv>y.lv;
	}
};
stu x;
priority_queue<stu>mapp;
int main()
{
	int t=0;
	while(cin>>cmd)
	{
		if(cmd=="GET")
		{
			if(!mapp.size()) cout<<"EMPTY QUEUE!"<<endl;
			else cout<<mapp.top().name<<" "<<mapp.top().p<<endl,mapp.pop();
		}
		else
		{
			cin>>x.name>>x.p>>x.lv;
			x.num=t++;
			mapp.push(x);
		}
	}
	return 0;
}


hdu 1509 Windows Message Queue

标签:

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

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