UVA540 Team Queue——题解 by hyl天梦
UVA540 Team Queue 题解
题目描述:题目原题 https://vjudge.net/problem/UVA-540
Queues and Priority Queues are data structures which are known to most computer scientists. The
Team Queue, however, is not so well known, though it occurs often in everyday life. At lunch time the
queue in front of the Mensa is a team queue, for example.
In a team queue each element belongs to a team. If an element enters the queue, it first searches
the queue from head to tail to check if some of its teammates (elements of the same team) are already
in the queue. If yes, it enters the queue right behind them. If not, it enters the queue at the tail
and becomes the new last element (bad luck). Dequeuing is done like in normal queues: elements are
processed from head to tail in the order they appear in the team queue.
Your task is to write a program that simulates such a team queue.
Input
The input file will contain one or more test cases. Each test case begins with the number of teams
t ( ≤ t ≤ ). Then t team descriptions follow, each one consisting of the number of elements
belonging to the team and the elements themselves. Elements are integers in the range ... A
team may consist of up to elements.
Finally, a list of commands follows. There are three different kinds of commands:
• ENQUEUE x — enter element x into the team queue
• DEQUEUE — process the first element and remove it from the queue
• STOP — end of test case
The input will be terminated by a value of for t.
Warning: A test case may contain up to (two hundred thousand) commands, so the implementation
of the team queue should be efficient: both enqueing and dequeuing of an element should
only take constant time.
Output
For each test case, first print a line saying ‘Scenario #k’, where k is the number of the test case. Then,
for each ‘DEQUEUE’ command, print the element which is dequeued on a single line. Print a blank line
after each test case, even after the last one.
Sample Input ENQUEUE
ENQUEUE
ENQUEUE
ENQUEUE
ENQUEUE
ENQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
STOP ENQUEUE
ENQUEUE
ENQUEUE
ENQUEUE
ENQUEUE
ENQUEUE
DEQUEUE
DEQUEUE
ENQUEUE
ENQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
DEQUEUE
STOP Sample Output
Scenario # Scenario #
题目翻译:(来自洛谷)
题意翻译
有t个团队的人正在排一个长队。每次新来一个人时,如果他有队友在排队,那么新人会插队到最后一个队友的身后。如果没有任何一个队友排队,则他会被排到长队的队尾。 输入每个团队中所有队员的编号,要求支持如下3中指令: ENQUEUE x:编号为x的人进入长队 DEQUEUE:长队的队首出队 STOP:停止模拟 对于每个DEQUEUE指令,输出出队的人的编号。
思路:
用STL完成此题。map 表示某人某组,队列q1与q2【n】,考虑到同伙人永远在一起,故用q1来存队,用q2【n】来存每一队里人;
定义如下:
using namespace std;
const int MAXN=;
typedef map<int,int> Map;
typedef queue<int> Queue;
Map a;
由于此题有多组数据,我们采用以下方法输入:
void intt(int n)
{
for(int i=;i<=n;i++)
{
int q;
cin>>q;
for(int j=;j<=q;j++)
{
int x;
cin>>x;
a[x]=i;//表示x是i队的
}
}
}
其中 n表示这组数据有几队人,a是map型的。
让我们看一下主程序:
int main()
{
int n;
int j=;
while(cin>>n)
{
Queue q1,q2[MAXN];
if(n==) break;
intt(n);
j++;
cout<<"Scenario #"<<j<<endl;
string s1;
int who;
这只是一部分,在其中定义队列,如果n为0,跳出。j表示这是第几组数据,为了输出格式。定义了一个字符串s1,和将要入队的人。
核心代码:
while(cin>>s1)
{
if(s1=="STOP") break;
if(s1=="ENQUEUE")
{
cin>>who;
if(q2[a[who]].empty()==) q1.push(a[who]);
q2[a[who]].push(who);
}
if(s1=="DEQUEUE")
{
int top=q1.front();
cout<</*top<<" "<<*/q2[top].front()<<endl;
q2[top].pop();
if(q2[top].empty()==)
{
q1.pop();
}
}
}
当s1为stop,说明操作结束。
若是"ENQUEUE" 执行入队操作,假如入队人所在队是第一次入队,则在q1里把这个队名称加入。在q2这个队中加入入队人。
若执行"DEQUEUE"出队操作,则看首位队的名称,存入top,再出队首位队的第一个人,如果出队后这个队为空,则把这个队的名称出队。
cout<<endl;
最后回车,题目要求。
整体代码如下:
#include<iostream>
#include<queue>
#include<map>
#include<string>
#include<cstdio>
using namespace std;
const int MAXN=;
typedef map<int,int> Map;
typedef queue<int> Queue;
Map a;
void intt(int n)
{
for(int i=;i<=n;i++)
{
int q;
cin>>q;
for(int j=;j<=q;j++)
{
int x;
cin>>x;
a[x]=i;
}
}
}
int main()
{
int n;
int j=;
while(cin>>n)
{
Queue q1,q2[MAXN];
if(n==) break;
intt(n);
j++;
cout<<"Scenario #"<<j<<endl;
string s1;
int who;
while(cin>>s1)
{
if(s1=="STOP") break;
if(s1=="ENQUEUE")
{
cin>>who;
if(q2[a[who]].empty()==) q1.push(a[who]);
q2[a[who]].push(who);
}
if(s1=="DEQUEUE")
{
int top=q1.front();
cout<</*top<<" "<<*/q2[top].front()<<endl;
q2[top].pop();
if(q2[top].empty()==)
{
q1.pop();
}
}
}
cout<<endl;
}
return ;
}
请勿抄题解,谢谢,传载请注明作者。
UVA540 Team Queue——题解 by hyl天梦的更多相关文章
- ACM学习历程——UVA540 Team Queue(队列,map:Hash)
Description Team Queue Team Queue Queues and Priority Queues are data structures which are know ...
- UVa540 Team Queue
// 题意:有t个团队的人在排队.每次来了一个新人之后,如果他有队友在排队,那么这个新人会插队到队友的身后. // 要求支持三种指令:ENQUEUE x; DEQUEUE(队首出队); STOP.模拟 ...
- uva540 Team Queue by sixleaves
这道题目.主要是对队列的灵活应用.其实就是一道模拟题目,只要你洞察出题目的本质就十分简单.题目意思大体是有多组测试数据,每组的一开始是一个数字t,代表一共有多少的团队,接着是t行输入,每一行都由一个数 ...
- 团体队列UVA540 Team Queue(队列简单用法)
题目背景 队列和优先级队列是大多数计算机科学家都知道的数据结构.但是团队队列却不被人熟知,尽管在生活中经常出现.比如,午餐时间的食堂门口的队列就是一个团队队列.在一个团队队列中,每个元素属于一个团队. ...
- 团体队列 UVA540 Team Queue
题目描述 有t个团队的人正在排一个长队.每次新来一个人时,如果他有队友在排队,那么新人会插队到最后一个队友的身后.如果没有任何一个队友排队,则他会被排到长队的队尾. 输入每个团队中所有队员的编号,要求 ...
- UVa540 Team Queue(队列queue)
队列 STL队列定义在头文件<queue>中, 用“ queue<int>s ” 方式定义, 用push()和pop()进行元素的入队和出队操作, front()取队首元素(但 ...
- Team Queue (uva540 队列模拟)
Team Queue Queues and Priority Queues are data structures which are known to most computer scientist ...
- Team Queue(多队列技巧处理)
Team Queue Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total ...
- POJ 2259 - Team Queue - [队列的邻接表]
题目链接:http://poj.org/problem?id=2259 Queues and Priority Queues are data structures which are known t ...
随机推荐
- P1021 整数奇偶排序
整数奇偶排序 题目出处:<信息学奥赛一本通>第二章上机练习6,略有改编 题目描述 告诉你包含 \(n\) 个数的数组 \(a\) ,你需要把他们按照"奇数排前面,偶数排后面:奇数 ...
- Linux 设备模型
在 2.5 开发循环中一个声明的目标是为内核创建一个统一的设备模型. 之前的内核没有单一的数据结 构, 使它们可以来获取关于系统如何整合的信息. 尽管缺乏信息, 有时事情也进行的不错. 新系统, 带 ...
- SPOJ VLATTICE (莫比乌斯反演)
传送门:https://www.spoj.com/problems/VLATTICE/en/ 题意: 在三维坐标系下,你在点(0,0,0),看的范围是(n,n,n)以内,求你可以看见多少个点没有被遮挡 ...
- 使用struts2进行登录功能的开发
使用struts2进行登录功能的开发 一. 设计需求 使用idea和maven开发具有登录功能的web应用,java语言,使用struts2框架. 二. 设计步骤 1.使用idea创建maven应用, ...
- 多线程之美7一ReentrantReadWriteLock源码分析
目录 前言 在多线程环境下,为了保证线程安全, 我们通常会对共享资源加锁操作,我们常用Synchronized关键字或者ReentrantLock 来实现,这两者加锁方式都是排他锁,即同一时刻最多允许 ...
- JMM&Thread
1.概述 高效并发通过JAVA线程之间提高并发协调实现,在实现过程中需考虑硬件的效率和一致性,但在运算的过程中需要考虑处理器与内存的交互,所以基于高速缓存的存储交互解决的处理器与内存的方案,在对多处理 ...
- Kafka学习笔记4--Kafka消费者的客户端(PHP)开发
一.准备工作 虽然 Kafka 是用 Java/Scala 语言编写的,但这不妨碍它对多语言的支持.可以在 Kafka 官网的 CLIENTS 查看 Kafka 支持的语言,其中包括 C/C++.Py ...
- Logback 学习指南 一
因为项目中用到 SpringBoot,看到官方文档中提及默认的日志实现是 logback,因此就通过阅读手册和结合实践学习了下相关的知识,记录下以备查阅. 1. logback 是什么? logbac ...
- $bzoj4152\ The\ Captain$ 最短路
正解:最短路+优化连边 解题报告: 传送门$w$ 这种优化连边啥的真的好妙噢$QwQ$ 首先显然离散化下不说$QwQ$.然后对所有横坐标纵坐标分别建点,相邻两横坐标点相连,边权为离散前的坐标差.纵坐标 ...
- 洛谷$P3645\ [APIO2015]$雅加达的摩天楼 最短路
正解:最短路 解题报告: 传送门$QwQ$ 考虑暴力连边,发现最多有$n^2$条边.于是考虑分块 对于长度$p_i$小于等于$\sqrt(n)$的边,建立子图$d=p_i$.说下关于子图$d$的定义? ...