zoukankan      html  css  js  c++  java
  • zoj 2724 Windows Message Queue(使用priority_queue容器模拟消息队列)

    题目链接:

      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

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

    Sample Output

    EMPTY QUEUE!
    msg2 10
    msg1 10
    EMPTY 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!
    "); 
    30             } 
    31             else//非空
    32             {
    33                 printf("%s %d
    ",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 } 
  • 相关阅读:
    Hybris Commerce下单时遇到产品库存不足的解决办法
    浅谈SAP CRM和Hybris Commerce里的价格架构折扣
    使用Fiddler为满足某些特定格式的网络请求返回mock响应
    如何设置Fiddler来拦截Java代码发送的HTTP请求,进行各种问题排查
    服务人员在Hybris ASM手动分配coupon给某个客户
    亲爱的SAP从业者们,烦请做个SAP知识学习种类的小调查
    使用Hybris Commerce User API读取用户信息时,电话字段没有返回
    Hybris commerce产品主数据的搜索API,批量返回若干主数据的值
    PCA
    SIFT+HOG+鲁棒统计+RANSAC
  • 原文地址:https://www.cnblogs.com/wenzhixin/p/8543736.html
Copyright © 2011-2022 走看看