首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【杭电oj】1509 - Windows Message Queue(优先队列)

【杭电oj】1509 - Windows Message Queue(优先队列)

作者头像
FishWang
发布2025-08-26 17:43:36
发布2025-08-26 17:43:36
18200
代码可运行
举报
运行总次数:0
代码可运行

Windows Message Queue

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)

Total Submission(s): 4979 Accepted Submission(s): 1993

Problem Description

Message queue is the basic fundamental of windows system. For each process, the system maintains a message queue. If something happens to this process, such as mouse click, text change, the system will add a message to the queue. Meanwhile, the process will do a loop for getting message from the queue according to the priority value if it is not empty. Note that the less priority value means the higher priority. In this problem, you are asked to simulate the message queue for putting messages to and getting message from the message queue.

Input

There's only one test case in the input. Each line is a command, "GET" or "PUT", which means getting message or putting message. If the command is "PUT", there're one string means the message name and two integer means the parameter and priority followed by. There will be at most 60000 command. Note that one message can appear twice or more and if two messages have the same priority, the one comes first will be processed first.(i.e., FIFO for the same priority.) Process to the end-of-file.

Output

For each "GET" command, output the command getting from the message queue with the name and parameter in one line. If there's no message in the queue, output "EMPTY QUEUE!". There's no output for "PUT" command.

Sample Input

代码语言:javascript
代码运行次数:0
运行
复制
   GET
PUT msg1 10 5
PUT msg2 10 4
GET
GET
GET

Sample Output

代码语言:javascript
代码运行次数:0
运行
复制
   EMPTY QUEUE!
msg2 10
msg1 10
EMPTY QUEUE!

Author

ZHOU, Ran

Source

Zhejiang University Local Contest 2006, Preliminary

优先队列的题,这道题在杭电上需要用一个变量记录输入的时间,在ZOJ则不需要。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#include <cstdio>
#include <algorithm>
#include <queue>
#include <stack>
#include <cstring>
using namespace std;
struct node
{
	char name[22];
	int v,k,t;
	bool friend operator<(node a,node b)
	{
		if (a.v==b.v)
			return a.t>b.t;
		else
			return a.v>b.v;
	}
}a;
int main()
{
	priority_queue<node>q;
	char op[4];
	int num=1;		//记录输入时间 
	while (~scanf ("%s",op))
	{
		if (strcmp(op,"PUT")==0)
		{
			scanf ("%s %d %d",a.name,&a.k,&a.v);
			a.t=num++;
			q.push(a);
		}
		else
		{
			if (q.empty())
				printf ("EMPTY QUEUE!\n");
			else
			{
				a=q.top();
				printf ("%s %d\n",a.name,a.k);
				q.pop();
			}
		}
	}
	return 0;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
目录
  • Windows Message Queue
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档