我是靠谱客的博主 壮观柜子,最近开发中收集的这篇文章主要介绍Uva - 540 - Team Queue,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述



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

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 #%dn", ++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("%dn", qp[t].front());
				qp[t].pop();
				if (qp[t].empty()) {
					qt.pop();
					// 如果某个人出队后,队伍空了
					// 那就把队伍从队伍队列中出列
				}
			}
		}
		printf("n");
	}

	return 0;
}




转载于:https://www.cnblogs.com/zhangyaoqi/p/4591594.html

最后

以上就是壮观柜子为你收集整理的Uva - 540 - Team Queue的全部内容,希望文章能够帮你解决Uva - 540 - Team Queue所遇到的程序开发问题。

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

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

评论列表共有 0 条评论

立即
投稿
返回
顶部