zoukankan      html  css  js  c++  java
  • Team Queue(STL练习题)

    题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1387

    Team Queue

    Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)
    Total Submission(s): 1518    Accepted Submission(s): 511


    Problem Description
    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 will contain one or more test cases. Each test case begins with the number of teams t (1<=t<=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.

     
    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
     
    Source
    题意: 模拟题,模拟排队
     1 //deque 双向队列
     2 #include<cstdio>
     3 #include<algorithm>
     4 #include<queue>
     5 #include<vector>
     6 #include<map>
     7 #include<cstring>
     8 using namespace std;
     9 #define N 1010
    10 deque<int> qu[N];//保存大的队列中的出现的每个小团队
    11 map<int, int> mp;//保存每个人属于哪一个团队
    12 vector <int > vv;//保存大的队列中的每个小团队出现的顺序
    13 void init()
    14 {
    15     mp.clear();
    16     for(int i =0 ;i < N ; i++)
    17     {
    18         qu[i].clear();
    19     }
    20     vv.clear();
    21 }
    22 int main()
    23 {
    24     int tm;
    25     int cnt = 0;
    26     while(~scanf("%d",&tm)&&tm!=0)
    27     {
    28         cnt++;
    29         int rs;
    30         init();
    31         for(int i = 0 ; i < tm ; i++)
    32         {
    33             scanf("%d",&rs);
    34             for(int j= 0 ;  j < rs ; j++)
    35             {
    36                 int t;
    37                 scanf("%d",&t);
    38                 mp[t] = i;
    39             }
    40         }
    41         char ml[10];
    42         printf("Scenario #%d
    ",cnt);
    43         vector <int> ::iterator it ;
    44         while(~scanf("%s",ml))
    45         {
    46             if(ml[0]=='S') break;
    47             else if(ml[0]=='E') 
    48             {
    49                 int tt;
    50                 scanf("%d",&tt);
    51                 int fl = mp[tt];
    52                 if(!qu[fl].empty())
    53                 {
    54                     qu[fl].push_back(tt);
    55                 }
    56                 else
    57                 {
    58                     it = find(vv.begin(),vv.end(),fl);
    59                     if(it != vv.end()) vv.erase(it);
    60                     vv.push_back(fl);
    61                     qu[fl].push_back(tt);
    62                 }
    63             }
    64             else if(ml[0]=='D')
    65             {
    66                 int flag = 0;
    67                 while(qu[vv[flag]].empty())
    68                 {
    69                     flag+=1;
    70                 }
    71                 int o= qu[vv[flag]].front() ;
    72                 printf("%d
    ",o);
    73                 qu[vv[flag]].pop_front();
    74             }
    75         }
    76         puts("");
    77     }
    78     return 0;
    79 }

    下面给出一个queue 的写法,更新一个知识点,queue的pop函数是用来去除最前面的元素的所以可以直接用pop

     1 #include<cstdio>
     2 #include<queue>
     3 #include<map>
     4 using namespace std;
     5 const int maxn = 1010;
     6 int main()
     7 {
     8     int t , kase = 0 ;
     9     while(~scanf("%d",&t),t)
    10     {
    11         printf("Scenario #%d
    ",++kase);
    12         //记录所有人的团队编号
    13         map<int , int> team;
    14         for(int  i = 0 ;i < t ; i++)
    15         {
    16             int n , x;
    17             scanf("%d",&n);
    18             while(n--){
    19                 scanf("%d",&x); team[x] = i;
    20             }
    21         }
    22         //模拟
    23         queue<int> q, q2[maxn];//q是团队的队列,q2是团队i成员的队列
    24         for(;;)
    25         {
    26             int x ;
    27             char cmd[10];
    28             scanf("%s",cmd);
    29             if(cmd[0]=='S') break;
    30             else if(cmd[0] =='D')
    31             {
    32                 int t = q.front();
    33                 printf("%d
    ",q2[t].front());q2[t].pop();
    34                 if(q2[t].empty()) q.pop();//团队t全部出队
    35             }
    36             else if(cmd[0] == 'E')
    37             {
    38                 scanf("%d",&x);
    39                 int t = team[x];
    40                 if(q2[t].empty()) q.push(t);
    41                 q2[t].push(x);
    42             }
    43         }
    44         printf("
    ");
    45     }
    46     return 0;
    47 }
  • 相关阅读:
    [转帖]活用Quartus II内置模板,快速输入HDL代码、TimeQuset束缚及tcl语句等
    [笔记] FPGA的发展
    [转帖]状态机的编码
    [笔记]Altera中DDR3设计
    [笔记]Test Plan的编写 及 程序开头注释
    [HDOJ2457]DNA repair
    [HDOJ2355]The Sidewinder Sleeps Tonite
    [HDOJ2825]Wireless Password
    [HDOJ2222]Keywords Search
    [HDOJ2454]Degree Sequence of Graph G
  • 原文地址:https://www.cnblogs.com/shanyr/p/4734459.html
Copyright © 2011-2022 走看看