• HDOJ1509 Windows Message Queue(优先队列)


    Windows Message Queue

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 2264    Accepted Submission(s): 884


    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
    GET PUT msg1 10 5 PUT msg2 10 4 GET GET GET
     
    Sample Output
    EMPTY QUEUE! msg2 10 msg1 10 EMPTY QUEUE!
     
    Author
    ZHOU, Ran
     
    Source
     
     1 #include <cstdio>
     2 #include <iostream>
     3 #include <queue>
     4 
     5 using namespace std;
     6 
     7 struct msg
     8 {
     9     char name[100];
    10     int parameter;
    11     int priority;
    12     int id;
    13     // 属性priority越小,实际优先级越大,排在队列前边
    14     bool operator < (const msg &p) const //注意优先队列是基于堆排序的,是不稳定排序,所以当优先级相同时不是
    15     {                                   //基于FIFO的,所以加一个ID属性,对于优先级相同的按照FIFO出队
    16         if(priority != p.priority)
    17             return priority > p.priority;
    18         return id > p.id;
    19     }
    20 };
    21 priority_queue<msg> q;
    22 
    23 int main()
    24 {
    25     char cmd[5];
    26     msg t1;
    27     int order = 0;
    28     while(~scanf("%s", cmd))
    29     {
    30         if(cmd[0] == 'P')
    31         {
    32             scanf("%s%d%d", t1.name, &t1.parameter, &t1.priority);
    33             t1.id = ++order;
    34             q.push(t1);
    35         }
    36         else
    37         {
    38             if(q.empty())
    39                 printf("EMPTY QUEUE!\n");
    40             else
    41             {
    42                 t1 = q.top();
    43                 q.pop();
    44                 printf("%s %d\n", t1.name, t1.parameter);
    45             }
    46         }
    47     }
    48     return 0;
    49 }
  • 相关阅读:
    python——socket,IO多路复用(select),socket server实现多并发
    python——多线程,多进程,协程
    python——装饰器,迭代器,生成器
    time模块,datetime模块
    re模块,paramiko模块
    Freemaker中使用中括号来包含标签
    Freemaker中使用中括号来包含标签
    freemarker Velocity获取request,session
    freemarker Velocity获取request,session
    freemarker Velocity获取request,session
  • 原文地址:https://www.cnblogs.com/dongsheng/p/3045790.html
Copyright © 2020-2023  润新知