概述
这个题又展示了queue:
整体思路:
输入的编号用map映射到团队编号中,在然后就是输入命令:
入队命令:
用 t 记录输入x的团队编号,在q2[t]找到x团队内,如果是空的话,就把整个团队加入到整个队列中,然后再把x加入到x团队中!
出队命令:
先用t记录队首的团队编号,在把队首的团队(q2[t])的队首去掉,如果该团队为空,则把整个团队去掉,依次类推。。
#include<cstdio>
#include<map>
#include<queue>
using namespace std;
int main()
{
int T,cont = 0;
const int maxt = 1000 + 10;
while(~scanf("%d",&T) && T){
printf("Scenario #%dn",++cont);
map<int,int>team;
for (int i = 0; i < T; ++i){
int n,x;
scanf("%d",&n);
while(n--){
scanf("%d",&x);
team[x] = i;
}
}
queue<int>q,q2[maxt];
for(;;){
char cmd[10];
scanf("%s",cmd);
if (cmd[0] == 'S')break;
if (cmd[0] == 'E'){
int x;
scanf("%d",&x);
int t = team[x];
if (q2[t].empty())q.push(t);
q2[t].push(x);
}
if (cmd[0] == 'D'){
int t = q.front();
printf("%dn",q2[t].front());
q2[t].pop();
if (q2[t].empty())q.pop();
}
}
printf("n");
}
return 0;
}
最后
以上就是自信蜻蜓为你收集整理的例题5-6 UVA 540 Team Queue团体队列的全部内容,希望文章能够帮你解决例题5-6 UVA 540 Team Queue团体队列所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复