看病要排隊 |
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) |
Total Submission(s): 43 Accepted Submission(s): 31 |
|
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
7 IN 1 1 IN 1 2 OUT 1 OUT 2 IN 2 1 OUT 2 OUT 1 2 IN 1 1 OUT 1 |
Sample Output
2 EMPTY 3 1 1 |
Author
linle
|
優先隊列測試
1 #include <cmath> 2 #include <cstdio> 3 #include <algorithm> 4 #include <cstring> 5 #include <string> 6 #include <cstdlib> 7 #include <queue> 8 using namespace std; 9 10 const int maxn=210; 11 struct qq 12 { 13 int t,x; 14 friend bool operator < (qq a,qq b) 15 { 16 if (a.x==b.x) 17 return a.t>b.t; 18 return a.x<b.x; 19 } 20 } ya; 21 priority_queue<qq> q1,q2,q3; 22 int a,b,x,cnt,n; 23 char s[20]; 24 25 void close() 26 { 27 exit(0); 28 } 29 30 void in() 31 { 32 scanf("%d %d",&a,&b); 33 cnt++; 34 ya.x=b; ya.t=cnt; 35 if (a==1) 36 q1.push(ya); 37 if (a==2) 38 q2.push(ya); 39 if (a==3) 40 q3.push(ya); 41 } 42 43 void out() 44 { 45 scanf("%d",&a); 46 if (a==1) 47 { 48 if (q1.empty()) 49 { 50 printf("EMPTY\n"); 51 return; 52 } 53 ya=q1.top(); 54 q1.pop(); 55 } 56 if (a==2) 57 { 58 if (q2.empty()) 59 { 60 printf("EMPTY\n"); 61 return; 62 } 63 ya=q2.top(); 64 q2.pop(); 65 } 66 if (a==3) 67 { 68 if (q3.empty()) 69 { 70 printf("EMPTY\n"); 71 return; 72 } 73 ya=q3.top(); 74 q3.pop(); 75 } 76 printf("%d\n",ya.t); 77 } 78 79 void init() 80 { 81 while(scanf("%d",&n)!=EOF) 82 { 83 while (!q1.empty()) q1.pop(); 84 while (!q2.empty()) q2.pop(); 85 while (!q3.empty()) q3.pop(); 86 cnt=0; 87 if (n==0) break; 88 for (int i=1;i<=n;i++) 89 { 90 scanf("%s",s); 91 if (s[0]=='I') 92 in(); 93 else 94 out(); 95 } 96 } 97 } 98 99 int main () 100 { 101 init(); 102 close(); 103 return 0; 104 }