首页 > 其他 > 详细

ZOJ2724(优先队列)

时间:2019-05-18 10:29:15      阅读:103      评论:0      收藏:0      [点我收藏+]

Windows Message Queue

 

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.

 

<b< dd="">

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.

 

<b< dd="">

Sample Input

 

 

GET
PUT msg1 10 5
PUT msg2 10 4
GET
GET
GET

 

<b< dd="">

Sample Output

 

 

EMPTY QUEUE!
msg2 10
msg1 10
EMPTY QUEUE!
 1 #include <cstdio>
 2 #include <iostream>
 3 #include <queue>
 4 #include <vector>
 5 #include<string.h>
 6 #include<map>
 7 #include<bits/stdc++.h>
 8 using namespace std;
 9 struct node
10 {
11     char s[30];
12     int b;
13     int pre;
14     friend bool operator<(node x,node y)
15 {
16     return x.pre>y.pre;
17 }
18 };
19 int main()
20 {
21     //ios::sync_with_stdio(false);
22     //cin.tie(0);
23     priority_queue<node> e;
24     node tt;
25     char str[30];
26     while(~scanf("%s",str))
27     {
28         if(strcmp(str,"GET")==0)
29         {
30             if(e.empty())
31             {
32                 cout<<"EMPTY QUEUE!"<<endl;
33                 continue;
34             }
35             node t=e.top();
36             e.pop();
37             //cout<<t.s<<" "<<t.b<<endl;
38             printf("%s %d\n",t.s,t.b);
39         }
40         else
41         {
42             scanf("%s%d%d",tt.s,&tt.b,&tt.pre);
43             e.push(tt);
44         }
45     }
46     return 0;
47 }

优先队列从小到大/从小到大排列,自定义优先队列要规定自定义的排列方式。



 

ZOJ2724(优先队列)

原文:https://www.cnblogs.com/zuiaimiusi/p/10884383.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!