HDU1509(优先级队列+模拟)

来源:互联网 发布:新理念外语网络答案 编辑:程序博客网 时间:2024/06/05 18:25

Windows Message Queue

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


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
GETPUT msg1 10 5PUT msg2 10 4GETGETGET
 


 

Sample Output
EMPTY QUEUE!msg2 10msg1 10EMPTY QUEUE!
 


 

优先级队列模拟

#include<iostream>using namespace std;#define IF 1000000typedef struct node{ node* child; node* father; char name[10]; int paremeter; int pripority;}queuenode;int main(){ char commond[5]; queuenode *head,*rear,*p,*q; head=new queuenode; rear=head; //strcpy(rear->name,"head");// rear->pripority=IF; rear->father=head; head->child=rear; while(scanf("%s",commond)!=EOF) {  if(strcmp(commond,"GET")==0)  {   if(rear->father==rear)    cout<<"EMPTY QUEUE!"<<endl;   else   {    p=rear;    q=p;    while(p!=head)    {     if(q->pripority>=p->pripority)      q=p;     p=p->father;    }    if(rear==q)rear=rear->father;    q->child->father=q->father;    q->father->child=q->child;    cout<<q->name<<" "<<q->paremeter<<endl;    delete q;   }  }  else   {   p=new queuenode;   head->father=p;   p->child=head;   p->father=rear;   rear->child=p;   rear=p;   scanf("%s%d%d",p->name,&p->paremeter,&p->pripority);  }  } return 0;}


 

原创粉丝点击