Problem Descriptionmessage 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 would add a message to the queue. Meanwhile, the process would do a loop for getting message from the queue according to the priority value if it's not empt Y. Note the less priority value means the higher priority. In this problem, you is asked to simulate the message queue for putting messages to and getting message from the message Queue.
Inputthere ' s only one test case in the input. Each 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 both integer means the parameter and priority Follo Wed by. There'll is at the most 60000 command. Note that one message can appear twice or more and if the messages has the same priority, the one comes first would be pro Cessed first. (i.e., FIFO for the same priority.) Process to the End-of-file.
Outputfor each "GET" command, the output of the command getting from the message queue with the name and parameter on one line. If There's no message in the queue, output "EMPTY queue!". There ' s no output for "PUT" command.
Sample Input
Getput MSG1 5PUT msg2 4GETGETGET
Sample Output
EMPTY queue!msg2 10MSG1 10EMPTY queue!
#include <cstdio> #include <queue> #include <cstring> #include <algorithm>using namespace std; struct Message{char name[110];int pri;int data;int num;friend bool operator < (message a,message B)//redefine queue Order {if (A.pri ==B.PRI) return A.num>b.num;return a.pri>b.pri;}}; priority_queue<message>q;//defines the priority queue message Temp;int Main () {char s[110];int i=0;while (~scanf ("%s", s)) {if (strcmp (S, "GET") {==0) {if (!q.empty ()) {printf ("%s%d\n", Q.top (). Name,q.top (). data); Q.pop ();} else{printf ("EMPTY queue!\n");}} ELSE{SCANF ("%s%d%d", TEMP.NAME,&TEMP.DATA,&TEMP.PRI), temp.num=++i;//saves the serial number of each data, first outputs Q.push (temp) with small data;}} return 0;}
Copyright NOTICE: This article for Bo Master original article, without Bo Master permission not reproduced.
Hdu Hang Electric 1509 Windows Message Queue