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 }
  • 相关阅读:
    input 标签取消readOnly属性
    python selenium 跑脚本的时候按钮无法点击的解决办法
    Python Selenium 调用IE浏览器失败Unexpected error launching Internet Explorer解决方法
    转载--Python random模块(获取随机数)常用方法和使用例子
    转载--python selenium实现文件、图片上传
    ieDriver启动IE浏览器显示This is the initial start page for the WebDriver server的解决办法
    自动化测试用例设计学习心得总结
    关于selene安装插件ide不能识别插件的问题解决办法
    cmd 启动mysql
    最大子序列
  • 原文地址:https://www.cnblogs.com/LYLtim/p/4534038.html
Copyright © 2011-2022 走看看