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 }
  • 相关阅读:
    informatica 学习日记整理
    informatica 学习日记整理
    执行异步任务,并记录时间
    Calling a Web API From a .NET Client (C#)
    PIVOT运算符使用(动态行转列)
    Replication--如何使用快照来初始化化请求订阅
    Replication--备份初始化需要还原备份么?
    疑难杂症--SQL SERVER 18056的错误
    TSQL--如何突破PRINT的8000大限
    执行计划--在存储过程中使用SET对执行计划的影响
  • 原文地址:https://www.cnblogs.com/LYLtim/p/4534038.html
Copyright © 2011-2022 走看看