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

团体队列(UVa540)

时间:2018-07-06 21:30:42      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:bre   http   pop   dex   namespace   cin   div   c++11   return   

  

  题目具体描述见:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=481

C++11代码如下:

 1 #include<iostream>
 2 #include<map>
 3 #include<string>
 4 #include<queue>
 5 using namespace std;
 6 
 7 const int maxn = 1010;
 8 
 9 int main() {
10     int t, k = 0;
11     while ((cin >> t) && t ) {
12         cout << "Scenario #" << ++k << endl;
13         queue<int>q, q2[maxn];
14         map<int, int>team;
15 
16         for(int i=1;i<=t;i++) {
17             int n, m;
18             cin >> n;
19             while (n--) {
20                 cin >> m;
21                 team[m] = i;
22             }            
23         }
24         for (;;) {
25             string cmd; int x;
26             cin >> cmd;
27             if (cmd[0] == S) break;
28             else if (cmd[0] == E) {
29                 cin >> x;
30                 int k = team[x];
31                 if (q2[k].empty()) q.push(k);
32                 q2[k].push(x);
33             }
34             else if (cmd[0] == D) {                
35                 int d = q.front();
36                 int num = q2[d].front(); q2[d].pop();
37                 if (q2[d].empty()) q.pop();
38                 cout << num << endl;
39             }
40         }
41         cout << endl;
42     }
43     return 0;
44 }

团体队列(UVa540)

标签:bre   http   pop   dex   namespace   cin   div   c++11   return   

原文地址:https://www.cnblogs.com/pgzhang/p/9275539.html

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