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\n",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\n",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\n",++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\n",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("\n");
45     }
46     return 0;
47 }

 

转载于:https://www.cnblogs.com/shanyr/p/4734459.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
STL(Standard Template Library)中的 queue 是一个常用的容器适配器,用于实现先进先出(FIFO)的数据结构。它基于 deque(双端队列)实现,并提供了一些操作函数来操作队列中的元素。 你可以使用 <queue> 头文件来包含 queue 容器适配器的定义。以下是一些 queue 的常用操作: 1. push(element):将元素添加到队列的末尾。 2. pop():移除队列的第一个元素。 3. front():返回队列的第一个元素,但并不移除它。 4. back():返回队列的最后一个元素,但并不移除它。 5. empty():检查队列是否为空,如果为空则返回 true,否则返回 false。 6. size():返回队列中元素的个数。 下面是一个简单的示例代码,演示了如何使用 queue 容器适配器: ```cpp #include <iostream> #include <queue> int main() { std::queue<int> myQueue; myQueue.push(1); myQueue.push(2); myQueue.push(3); std::cout << "Front element: " << myQueue.front() << std::endl; std::cout << "Back element: " << myQueue.back() << std::endl; myQueue.pop(); std::cout << "Front element after popping: " << myQueue.front() << std::endl; std::cout << "Queue size: " << myQueue.size() << std::endl; return 0; } ``` 这个示例代码创建了一个整数类型的队列,并使用 push() 函数将三个元素添加到队列中。然后,使用 front() 和 back() 函数分别获取队列的第一个元素和最后一个元素,并使用 pop() 函数移除第一个元素。最后,使用 size() 函数获取队列中剩余元素的个数。 希望这个简单的示例能帮助你理解 queue 的基本用法。如果你还有其他问题,请随时提问!
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值