码迷,mamicode.com
首页 > 其他好文 > 详细

【POJ 2259】 Team Queue

时间:2018-06-29 22:55:20      阅读:183      评论:0      收藏:0      [点我收藏+]

标签:lex   printf   streambuf   bsp   size   bitset   ios   target   算法   

【题目链接】

            http://poj.org/problem?id=2259

【算法】

          由题,一个人入队时,若这个人所在的组已经有人在队列中,则加入队列,否则排到队末

          因此我们发现,这个队列一定是由连续的一组人的若干段组成,不妨用一个队列记录每组人的顺序,再分别将每组建一个队列

          维护这(n+1)个队列即可,具体细节,笔者不再赘述

【代码】

          

#include <algorithm>  
#include <bitset>  
#include <cctype>  
#include <cerrno>  
#include <clocale>  
#include <cmath>  
#include <complex>  
#include <cstdio>  
#include <cstdlib>  
#include <cstring>  
#include <ctime>  
#include <deque>  
#include <exception>  
#include <fstream>  
#include <functional>  
#include <limits>  
#include <list>  
#include <map>  
#include <iomanip>  
#include <ios>  
#include <iosfwd>  
#include <iostream>  
#include <istream>  
#include <ostream>  
#include <queue>  
#include <set>  
#include <sstream>  
#include <stdexcept>  
#include <streambuf>  
#include <string>  
#include <utility>  
#include <vector>  
#include <cwchar>  
#include <cwctype>  
#include <stack>  
#include <limits.h> 
using namespace std;
#define MAXN 1010
#define MAXS 1000010

int i,n,s,x,pos,TC;
int g[MAXS];
bool inq[MAXN];
char opt[10];
queue< int > ord;
queue< int > q[MAXN];

int main() 
{
        
        while (scanf("%d",&n) != EOF && n)
        {
                memset(inq,false,sizeof(inq));
                while (!ord.empty()) ord.pop();
                for (i = 1; i <= n; i++) 
                {
                        while (!q[i].empty()) 
                                q[i].pop();    
                }
                for (i = 1; i <= n; i++)
                {
                        scanf("%d",&s);
                        while (s--)
                        {
                                scanf("%d",&x);
                                g[x] = i;
                        }
                }        
                printf("Scenario #%d\n",++TC);
                while (true)
                {
                        scanf("%s",&opt);
                        if (opt[0] == S) break;
                        if (opt[0] == E)
                        {
                                scanf("%d",&x);
                                if (inq[g[x]]) q[g[x]].push(x);
                                else
                                {
                                        inq[g[x]] = true;
                                        ord.push(g[x]);
                                        q[g[x]].push(x);
                                }
                        }
                        if (opt[0] == D)
                        {
                                pos = ord.front();
                                printf("%d\n",q[pos].front());
                                q[pos].pop();
                                if (q[pos].empty()) 
                                {
                                        ord.pop();
                                        inq[pos] = false;
                                }
                        }
                }
                printf("\n");
        }
        
        return 0;
    
}

 

【POJ 2259】 Team Queue

标签:lex   printf   streambuf   bsp   size   bitset   ios   target   算法   

原文地址:https://www.cnblogs.com/evenbao/p/9245664.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!