HDU 1387 - Team Queue

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

題目大意:
給出n個隊列,當出現ENQUEUE指令的時候,就將ENQUEUE后面的那個數據加入隊伍當中,加入隊伍的規(guī)則是:如果有同屬一個隊列的數據已經在隊伍里,那么就直接加到這個已經在隊伍里的那個數據的右邊,如果一個都沒有,那么就將這個數據加入到隊伍的末尾。

**Solution **
隊列應用,以每只隊伍建立隊列,再以隊伍序號建立一個隊列,將每個元素入到它所屬的隊伍隊列中,若序號隊列沒有此隊伍的序號,則將序號入隊,當某個隊伍隊列為空時,將序號隊列中的此序號出隊。

#include<iostream>
#include<cstdio>
#include<cstring>
#include<queue>
using namespace std;
const int maxn = 1000000;
int id[maxn];
bool f[1002];

int main() {

    int t, cas = 1, n, x;
    char s[20];
    while (scanf("%d",&t)!=EOF&&t!=0)
    {
        printf("Scenario #%d\n", cas++);
        queue<int> q[1002];
        queue<int> team;
        for (int i = 1; i <= t; i++)
        {
            scanf("%d", &n);
            f[i] = false;
            for (int j = 0; j < n; j++)
            {
                scanf("%d", &x);
                id[x] = i;
            }
        }
        while (scanf("%s",s)!=EOF&&strcmp(s,"STOP")!=0)
        {
            if (!strcmp(s, "ENQUEUE"))
            {
                scanf("%d", &x);
                if (!f[id[x]])
                {
                    team.push(id[x]);
                    f[id[x]] = true;
                }
                q[id[x]].push(x);
            }
            else
            {
                int top = team.front();
                printf("%d\n", q[top].front());
                q[top].pop();
                if (q[top].empty())
                {
                    team.pop();
                    f[top] = false;

                }
            }
        }
        printf("\n");
    }
    return 0;
}
最后編輯于
?著作權歸作者所有,轉載或內容合作請聯系作者
【社區(qū)內容提示】社區(qū)部分內容疑似由AI輔助生成,瀏覽時請結合常識與多方信息審慎甄別。
平臺聲明:文章內容(如有圖片或視頻亦包括在內)由作者上傳并發(fā)布,文章內容僅代表作者本人觀點,簡書系信息發(fā)布平臺,僅提供信息存儲服務。

相關閱讀更多精彩內容

  • **2014真題Directions:Read the following text. Choose the be...
    又是夜半驚坐起閱讀 11,000評論 0 23
  • (這首詩是我嘗試過的難度最大的一首,嘗試使用了很多隱喻以及各種思辨。所要表達的是存在主義的一些東西。所以這首詩和文...
    秦白閱讀 227評論 0 1
  • 昨晚YM給我電話,我一接她就帶著哭腔,我問怎么了,她說她郁悶到極點了,以后再也不想戀愛了,我以為是什么事,原...
    麥芽么么閱讀 261評論 0 2
  • 現在的他不用再擔心害怕了!
    哈哈哈哈水洗面膜和閱讀 193評論 0 0
  • 因為馬上就要離職了,所以今天請一位女同事吃個告別午餐。 席間,我跟她說我要去斗魚了,她有些驚訝的說:”斗魚,就是那...
    staring2016閱讀 1,094評論 1 1

友情鏈接更多精彩內容