經典第五章 例 5-6 UVA 540 Team Queue(佇列的簡單應用)【queue】
阿新 • • 發佈:2019-02-08
【題目分析】用佇列來模擬一個多人排隊的過程。
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<queue>
#include<map>
using namespace std;
const int maxt=1000+10;
int main()
{
int t,kase=0;
while(~scanf("%d",&t))
{
if(t==0)
{
break;
}
printf ("Scenario #%d\n",++kase);
map<int,int>team;//來記錄某個人所在的團隊的編號
for(int i=0;i<t;i++)
{
int n,x;
scanf("%d",&n);
for(int j=0;j<n;j++)
{
scanf("%d",&x);
team[x]=i;
}
}
queue <int> q, q2[maxt];//q來存團隊的編號,q2來存每個團隊的人
for(;;)
{
int x;
char cmd[10];//指令
scanf("%s",cmd);
if(cmd[0]=='S')break;
else if(cmd[0]=='D')
{
int t=q.front();
printf("%d\n",q2[t].front());
q2[t].pop();
if (q2[t].empty())//如果某個團隊空了,就把團隊編號彈出
{
q.pop();
}
}
else if(cmd[0]=='E')
{
scanf("%d",&x);
int t=team[x];
if(q2[t].empty())q.push(t);//如果t團隊不存在就新加入
q2[t].push(x);
}
}
printf("\n");
}
return 0;
}