zoukankan      html  css  js  c++  java
  • UVa540 Team Queue

    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 

    2
    3 101 102 103
    3 201 202 203
    ENQUEUE 101
    ENQUEUE 201
    ENQUEUE 102
    ENQUEUE 202
    ENQUEUE 103
    ENQUEUE 203
    DEQUEUE
    DEQUEUE
    DEQUEUE
    DEQUEUE
    DEQUEUE
    DEQUEUE
    STOP
    2
    5 259001 259002 259003 259004 259005
    6 260001 260002 260003 260004 260005 260006
    ENQUEUE 259001
    ENQUEUE 260001
    ENQUEUE 259002
    ENQUEUE 259003
    ENQUEUE 259004
    ENQUEUE 259005
    DEQUEUE
    DEQUEUE
    ENQUEUE 260002
    ENQUEUE 260003
    DEQUEUE
    DEQUEUE
    DEQUEUE
    DEQUEUE
    STOP
    0
    

    Sample Output 

    Scenario #1
    101
    102
    103
    201
    202
    203
    
    Scenario #2
    259001
    259002
    259003
    259004
    259005
    260001
    

    Miguel A. Revilla 
    1999-01-11
     
     
     1 //2015.5.27
     2 //By LYLtim
     3 
     4 #include <iostream>
     5 #include <map>
     6 #include <queue>
     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<int, int> 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<int> 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 }
  • 相关阅读:
    监控Linux系统性能命令---sar
    用SecureCRT来上传和下载文件 rz sz
    CentOS7 Firewall NAT 及端口映射
    CentOS 修改主机名
    CentOS 6.X如何更改网卡名称
    MySQL数据操作
    mysql如何修改数据表
    Zabbix图形中中文字体显示方块
    Linux虚拟机模板的创建
    Java web项目JXl导出excel,(从eclipse上移动到tomact服务器上,之路径更改)
  • 原文地址:https://www.cnblogs.com/LYLtim/p/4534038.html
Copyright © 2011-2022 走看看