zoj 2724 Windows Message Queue(使用priority_queue容器類比訊息佇列)

來源:互聯網
上載者:User

標籤:queue   most   system   com   this   app   not   message   優先   

題目連結:

  http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemCode=2724

題目描述:

  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

GETPUT msg1 10 5PUT msg2 10 4GETGETGET

Sample Output

EMPTY QUEUE!msg2 10msg1 10EMPTY QUEUE!
 1 /*問題 類比訊息佇列,對於每一條PUT命令,將其後的命令及參數按照優先順序插入隊列 2                      對於每一條GET命令,輸出位於隊首的訊息的名稱和參數,如果隊列時空的輸出EMPTY QUEUE! 3 插入的時候注意按優先順序,如果優先順序相同,按照先後次序入隊即可。 4 解題思路 使用C++STL中的優先隊列。識別操作,GET輸出隊首或者EMPTY QUEUE!,PUT進入優先隊列,定義結構體比較規則*/ 5 #include <cstdio> 6 #include <queue> 7 #include <cstring> 8 using namespace std; 9 10 struct info{11     char name[50];12     int para;13     int rank;14     bool operator < (const info &a) const{15             return a.rank < rank;//等於的時候返回0 16     }17 };18 19 int main()20 {21     char op[5];22     priority_queue<info> pq;23     info temp;24     while(scanf("%s",op) != EOF){25         if(strcmp(op,"GET") == 0)26         {27             if(pq.empty())//空28             {29                 printf("EMPTY QUEUE!\n"); 30             } 31             else//非空32             {33                 printf("%s %d\n",pq.top().name,pq.top().para);34                 pq.pop();    35             } 36         }37         if(strcmp(op,"PUT") == 0)38         {39             scanf("%s %d %d",temp.name,&temp.para,&temp.rank);40             pq.push(temp);41         }42     }    43 } 

 

zoj 2724 Windows Message Queue(使用priority_queue容器類比訊息佇列)

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.