博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
UVa540 Team Queue
阅读量:4680 次
发布时间:2019-06-09

本文共 3526 字,大约阅读时间需要 11 分钟。

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 ( $1 \le t \le 1000$). 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 0 - 999999. A team may consist of up to 1000 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 0 for t.

 

Warning: A test case may contain up to 200000 (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 eachDEQUEUE 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 

 

23 101 102 1033 201 202 203ENQUEUE 101ENQUEUE 201ENQUEUE 102ENQUEUE 202ENQUEUE 103ENQUEUE 203DEQUEUEDEQUEUEDEQUEUEDEQUEUEDEQUEUEDEQUEUESTOP25 259001 259002 259003 259004 2590056 260001 260002 260003 260004 260005 260006ENQUEUE 259001ENQUEUE 260001ENQUEUE 259002ENQUEUE 259003ENQUEUE 259004ENQUEUE 259005DEQUEUEDEQUEUEENQUEUE 260002ENQUEUE 260003DEQUEUEDEQUEUEDEQUEUEDEQUEUESTOP0

 

Sample Output 

 

Scenario #1101102103201202203Scenario #2259001259002259003259004259005260001

 


Miguel A. Revilla 
1999-01-11
 
 
1 //2015.5.27 2 //By LYLtim 3  4 #include 
5 #include
6 #include
7 8 using namespace std; 9 10 int main() {11 int t, kase = 0;12 while ((cin >> t) && t) {13 cout << "Scenario #" << ++kase << endl;14 int element;15 map
TeamNoOf;16 for (int i = 0; i < t; i++) {17 int n, ele;18 cin >> n;19 while (n--) {20 cin >> element;21 TeamNoOf[element] = i;22 }23 }24 queue
TeamQue, QueOf[t];25 string cmd;26 for(;;) {27 cin >> cmd;28 if (cmd[0] == 'E') {29 cin >> element;30 int TeamNo = TeamNoOf[element];31 if (QueOf[TeamNo].empty())32 TeamQue.push(TeamNo);33 QueOf[TeamNo].push(element);34 } else if (cmd[0] == 'D') {35 int front_team_no = TeamQue.front();36 cout << QueOf[front_team_no].front() << endl;37 QueOf[front_team_no].pop();38 if (QueOf[front_team_no].empty())39 TeamQue.pop();40 } else if (cmd[0] == 'S')41 break;42 }43 cout << endl;44 }45 }

 

转载于:https://www.cnblogs.com/LYLtim/p/4534038.html

你可能感兴趣的文章
Console-算法[for,if,break]-五个好朋友分苹果
查看>>
Mysql数据库账户权限设置
查看>>
ylb: SQL表的高级查询-子查询
查看>>
清空你的Siri “指纹”
查看>>
import 用法
查看>>
报喜啦~过了!
查看>>
6月7 考试系统
查看>>
mysql 基本操作
查看>>
HTML5 and Websocket
查看>>
zTree async 动态参数处理
查看>>
Oracle学习之常见错误整理
查看>>
Android实例-处理隐藏输入法后不再显示问题(XE8+小米2)
查看>>
字符串反转(10)
查看>>
HTC Sensation G14开盒
查看>>
Buffer cache spillover: only buffers
查看>>
lock_sga引起的ksvcreate :process(m000) creation failed
查看>>
面向抽象/接口编程以及继承
查看>>
POJ 1704 Georgia and Bob
查看>>
文本情感分析(一):基于词袋模型(VSM、LSA、n-gram)的文本表示
查看>>
Chap-4 Section 4.5 静态库链接
查看>>