• 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 }

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



  • 相关阅读:
    4.qml-ECMAScript(Array对象、Math对象)
    3.qml-ECMAScript_03(Object基类对象、String对象)
    2.qml-ECMAScript_02(原始值类型、通用转换方法)
    ORA-00001: 违反唯一约束条件(SOLEX.SYS_C0012537) --解决方法
    macOS 系统打开和退出文件夹(cd命令)
    macOS 系统下node安装和环境配置(通过node官网)
    macOS 系统报错:zsh:command not found :npm
    macOS 系统更新node老是不成功
    macOS 系统上升级 Python
    maxOS 系统更新node版本
  • 原文地址:https://www.cnblogs.com/zuiaimiusi/p/10884383.html
Copyright © 2020-2023  润新知