hdu 1873 看病要排队

来源:互联网 发布:中国大数据产业峰会 编辑:程序博客网 时间:2024/06/06 12:59

看病要排队

Time Limit: 3000/1000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 8300    Accepted Submission(s): 3459


Problem Description
看病要排队这个是地球人都知道的常识。
不过经过细心的0068的观察,他发现了医院里排队还是有讲究的。0068所去的医院有三个医生(汗,这么少)同时看病。而看病的人病情有轻重,所以不能根据简单的先来先服务的原则。所以医院对每种病情规定了10种不同的优先级。级别为10的优先权最高,级别为1的优先权最低。医生在看病时,则会在他的队伍里面选择一个优先权最高的人进行诊治。如果遇到两个优先权一样的病人的话,则选择最早来排队的病人。

现在就请你帮助医院模拟这个看病过程。
 

Input
输入数据包含多组测试,请处理到文件结束。
每组数据第一行有一个正整数N(0<N<2000)表示发生事件的数目。
接下来有N行分别表示发生的事件。
一共有两种事件:
1:"IN A B",表示有一个拥有优先级B的病人要求医生A诊治。(0<A<=3,0<B<=10)
2:"OUT A",表示医生A进行了一次诊治,诊治完毕后,病人出院。(0<A<=3)
 

Output
对于每个"OUT A"事件,请在一行里面输出被诊治人的编号ID。如果该事件时无病人需要诊治,则输出"EMPTY"。
诊治人的编号ID的定义为:在一组测试中,"IN A B"事件发生第K次时,进来的病人ID即为K。从1开始编号。
 

Sample Input
7IN 1 1IN 1 2OUT 1OUT 2IN 2 1OUT 2OUT 12IN 1 1OUT 1
 

Sample Output
2EMPTY311
#include<cstdio>#include<cstring>#include<queue>#include<algorithm>  using namespace std;    struct Patient    {    int priority;       int key;        friend bool operator < (Patient p1,Patient p2)        {              if(p1.priority != p2.priority){              return p1.priority < p2.priority;          }          else{              return p1.key > p2.key;          }      }  };  int main(){      int i,N,k;      char Type[4];      int DoctorID,PatientID;      Patient patient[2001];      while(scanf("%d",&N) != EOF){          priority_queue<Patient> Doctor1;          priority_queue<Patient> Doctor2;          priority_queue<Patient> Doctor3;          k = 1;          while(N--){              scanf("%s",Type);                if(strcmp(Type,"IN") == 0){                   patient[k].key = k;                  scanf("%d %d",&DoctorID,&patient[k].priority);                   if(DoctorID == 1){                      Doctor1.push(patient[k]);                  }                  else if(DoctorID == 2){                      Doctor2.push(patient[k]);                  }                  else{                      Doctor3.push(patient[k]);                  }                  k++;              }              else if(strcmp(Type,"OUT") == 0){                   scanf("%d",&DoctorID);                   if(DoctorID == 1){                      if(Doctor1.empty()){                          printf("EMPTY\n");                      }                      else{                          printf("%d\n",Doctor1.top().key);                          Doctor1.pop();                      }                  }                   else if(DoctorID == 2){                      if(Doctor2.empty()){                          printf("EMPTY\n");                      }                      else{                          printf("%d\n",Doctor2.top().key);                          Doctor2.pop();                      }                  }                  else{                      if(Doctor3.empty()){                          printf("EMPTY\n");                      }                      else{                          printf("%d\n",Doctor3.top().key);                            Doctor3.pop();                      }                  }              }          }      }      return 0;  }


0 0