zoukankan      html  css  js  c++  java
  • UVA 540 stl

    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 ( $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 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 

    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
    #include<stdio.h>
    #include<iostream>
    #include<string.h>
    #include<queue>
    using namespace std;
    int team[1000002];
    int main()
    {
        int i,j,t,n;
        int ff=0;
        char way[15];
        while(scanf("%d",&t)!=EOF)
        {
            queue<int>sq[1003];
            queue<int>bq;
            memset(team,0,sizeof(team));
            if(!t)break;
            for(i=1;i<=t;i++)
            {
                scanf("%d",&n);
                for(j=0;j<n;j++)
                {
                    int num;
                    scanf("%d",&num);
                    team[num]=i;
                }
            }
            printf("Scenario #%d
    ",++ff);
            while(1)
            {
                scanf("%s",&way);
                if(way[0]=='S')
                {
                    printf("
    ");
                    break;
                }
                else if(way[0]=='E')
                {
                    int x;
                    scanf("%d",&x);
                    if(sq[team[x]].empty())
                    {
                        bq.push(team[x]);
                        sq[team[x]].push(x);
                    }
                    else
                    {
                        sq[team[x]].push(x);
                    }
                }
                else
                {
                    int key=bq.front();
                    printf("%d
    ",sq[key].front());
                    sq[key].pop();
                    if(sq[key].empty())
                        bq.pop();
                }
            }
        }
    }
  • 相关阅读:
    苹果所有常用证书,appID,Provisioning Profiles配置说明及制作图文教程(精)
    使用tcpdump抓取HTTP包
    android保持在休眠时,后台程序继续运行(让程序获取设备电源锁)
    insert数据时,获取插入数据的id
    Android学习笔记(五五):通知Notification(下)
    apk反编译与android项目代码混淆
    android 解决横竖屏切换时重新载入的问题
    android中往字符串数组动态添加元素
    error 25015安装程序集“C:WindowsMicrosoft .NETFrameworkv2.0.50727xxx.dll”失败,原因是出现了系统错误:另一个程序正在使用此文件,进程无法访问
    win7 安装vs2013后无法连接远程数据库,出现如下提示的解决方法
  • 原文地址:https://www.cnblogs.com/sweat123/p/4682037.html
Copyright © 2011-2022 走看看