UVA 540 Team Queue

來源:互聯網
上載者:User

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 ( ).
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 

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

著實令人蛋疼的一個題,題好雖然短,但是難懂啊,入隊時看自己是屬於哪個隊列的就加到哪個隊列的後面,出隊則根據入隊時所在的隊列的順序出隊。

language:c++

code:

#include<iostream>#include<queue>#include<vector>#include<map>#include<cstdio>#include<cstring>using namespace std;int main(){    //freopen("in.txt","r",stdin);    int quenum;    int cas=1;    while(scanf("%d",&quenum))    {        //cout<<quenum<<endl;        int n,num;        bool inque[1000]= {false};        map<int,int>mp;        if(quenum==0)break;        vector<queue<int> >v;        queue<int>ans;        for(int i=0; i<quenum; i++)        {            v.push_back(queue<int>());            scanf("%d",&n);            for(int j=0; j<n; j++)            {                scanf("%d",&num);                mp[num]=i;            }        }        char s[10];        printf("Scenario #%d\n",cas++);        while(scanf("%s",s))        {            if(strcmp(s,"STOP")==0)break;            if(strcmp(s,"ENQUEUE")==0)            {                scanf("%d",&num);                v[mp[num]].push(num);                if(!inque[mp[num]])                {                    ans.push(mp[num]);                    inque[mp[num]]=true;                }            }            else            {                printf("%d\n",v[ans.front()].front());                v[ans.front()].pop();                if(v[ans.front()].empty())                {                    inque[ans.front()]=false;                    ans.pop();                }            }        }        puts("");    }    return 0;}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.