码迷,mamicode.com
首页 > 其他好文 > 详细

hdu_看病要排队

时间:2020-05-01 23:44:44      阅读:63      评论:0      收藏:0      [点我收藏+]

标签:operator   font   bool   name   str   end   ring   empty   main   

 1 #include<iostream>
 2 #include<string>
 3 #include<queue>
 4 using namespace std;
 5 int k;
 6 struct sortt{
 7     int pri;
 8     int id;
 9     friend bool operator<(sortt s1,sortt s2){
10         if(s1.pri==s2.pri) return s1.id>s2.id;
11         else 
12         return s1.pri<s2.pri;
13     }
14 };
15 int main(){
16     int n;
17     int a,b;
18     sortt sor;
19     string str;
20     while(cin>>n){
21         priority_queue<sortt> q[4];
22         k=0;
23         while(n--){
24             cin>>str;
25             if(str=="OUT"){
26                 cin>>a;
27                 if(q[a].empty()==true)
28                 cout<<"EMPTY"<<endl;
29                 else{
30                     sor=q[a].top();
31                     q[a].pop();
32                     cout<<sor.id<<endl;
33                 }
34             }
35             else if(str=="IN"){
36                 cin>>a>>b;
37                 sor.id=++k;
38                 sor.pri=b;
39                 q[a].push(sor);
40             }
41         }
42     }
43     return 0;
44 } 

 

hdu_看病要排队

标签:operator   font   bool   name   str   end   ring   empty   main   

原文地址:https://www.cnblogs.com/bxynlbyx/p/12815356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!