您的位置:首页 > 产品设计 > UI/UE

Uva - 540 - Team Queue

2015-06-12 15:44 183 查看




用两个队列,每个团队有一个队列,包含自己队伍中的人员编号,而团队整体形成一个队列,包含队列中的团队编号。

AC代码:

#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <cstring>
#include <string>
#include <sstream>
#include <vector>
#include <set>
#include <map>
#include <algorithm>
#include <stack>
#include <queue>

using namespace std;

const int maxt = 1010;

int main()
{
int t, kase = 0;
while (scanf("%d", &t) == 1 && t) {
printf("Scenario #%d\n", ++kase);

map<int, int> team;
// team[x]表示编号为x的人所在的团队编号
for (int i = 0; i < t; i++) {
int n, x;
scanf("%d", &n);
while (n--) {
scanf("%d", &x);
team[x] = i;
}
}
queue<int> qt, qp[maxt];
// qt是团队的队列,qp[i]是团队i成员队列
while (1) {
char cmd[10];
scanf("%s", cmd);
if (cmd[0] == 'S') {
break;
}
else if (cmd[0] == 'E') {
int x;
scanf("%d", &x);
int t = team[x];
if (qp[t].empty()) {
// 如果x所在的团队没有人在团队队列中,团队t入列
qt.push(t);
}
qp[t].push(x);
}
else {
int t = qt.front();
printf("%d\n", qp[t].front());
qp[t].pop();
if (qp[t].empty()) {
qt.pop();
// 如果某个人出队后,队伍空了
// 那就把队伍从队伍队列中出列
}
}
}
printf("\n");
}

return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: