ZOJ2724(优先队列)

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
",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 }

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



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