我是靠谱客的博主 怡然唇膏,最近开发中收集的这篇文章主要介绍例题5-6 团体队列(Team Queue,UVa 540),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

原题链接:https://vjudge.net/problem/UVA-540
分类:<queue>
备注:queue与STL其他容器的综合运用

思路

  看题目标题一般都会考虑队列的,题目内容确实也是排队。
  已知队伍数目上限1000,那么开数组把不同队伍分开是可以接受的。
  用queue数组存取在排队的人,每次新来一个人找已用过的queue中是否有队友,有则加入队伍,无则再用一个queue存入新来的。这样每个队伍已经根据数组的下标排好了顺序,每当前面队伍的人全走完了才会找下一个队伍的人,即可符合题目要求。

代码如下:

#include<iostream>
#include<string>
#include<queue>
#include<map>
using namespace std;
const int maxt = 1000 + 5;
int t, n, x, kase;

int main(void)
{
	while (~scanf("%d", &t) && t)
	{
		printf("Scenario #%dn", ++kase);
		map<int, int>team;
		for(int i=0;i<t;i++)
		{
			scanf("%d", &n);
			for (int j = 0; j < n; j++)
			{
				scanf("%d", &x);
				team[x] = i;	
			}
		}
		string cmd;
		queue<int>wait[maxt];
		int now = 0, cnt = 0;
		while (cin >> cmd)
		{
			if (cmd[0] == 'S')break;
			else if (cmd[0] == 'E')
			{
				scanf("%d", &x);
				int ok = 0;
				for (int i = now; i < cnt; i++)
					if (!wait[i].empty() && team[wait[i].front()] == team[x])
					{
						wait[i].push(x);
						ok = 1;
						break;
					}
				if (!ok)wait[cnt++].push(x);
			}
			else if (cmd[0] == 'D')
			{
				if (wait[now].empty()) now++;
				printf("%dn", wait[now].front());
				wait[now].pop();
			}
		}
		printf("n");
	}
	return 0;
}

最后

以上就是怡然唇膏为你收集整理的例题5-6 团体队列(Team Queue,UVa 540)的全部内容,希望文章能够帮你解决例题5-6 团体队列(Team Queue,UVa 540)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(44)

评论列表共有 0 条评论

立即
投稿
返回
顶部