程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> HDU-4041-Eliminate Witches! (11年北京網絡賽!!)

HDU-4041-Eliminate Witches! (11年北京網絡賽!!)

編輯:C++入門知識

HDU-4041-Eliminate Witches! (11年北京網絡賽!!)


Eliminate Witches!

Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 1124 Accepted Submission(s): 426


Problem Description Kaname Madoka is a Magical Girl(Mahou Shoujo/Puella Magi). The duty of a Magical Girl is to eliminate Witches(Majo). Though sounds horrific, it is not a hard job for her as a powerful magical girl.

One day Madoka is eliminating Witches as usual. This time she is facing a maze full of Witches. The maze consists of rooms, each lives exactly one Witch. And there is exactly one path from one room to another. So you see, the maze can be represented as a tree, with rooms regarded as nodes on the tree.

Madoka eliminates Witches according to the following rules:
1. At first, Madoka enters the root node room of the maze.
2. If the room Madoka enters lives a Witch, Madoka will eliminate it at once, and the Witch disappear.
3. If the room has child node rooms with Witches, Madoka will choose the leftmost one and enter it.
4. Madoka won't go back to the parent node room of a room X until Witches living in child node rooms of X are all eliminated.

See the figure below for details about a sample maze. The numbers inside nodes indicate the order of elimination of the corresponding Witches, the strings below nodes are names of Witches, and the arrow shows the tracks Madoka travels:
\

After finishes her task, Madoka just make a brief log like this:
"walpurgis(charlotte(patricia,gertrud),elly,gisela)"
which represents the tree-like maze identifying rooms by the names of Witches living in them.

Akemi Homura, a classmate of Madoka, also a Magical Girl, is a mad fan of her. She wants to take detailed notes of everything Madoka do! Apparently the log Madoka made is hard to read, so Homura decide to make a new one of her own.

The new log should contain the following information:
1. The number of rooms of the maze
2. Names of Witches in all rooms.
3. The tracks Madoka travels. (represented by the number identifying the node)

So the new log should be like this:
6
walpurgis
charlotte
patricia
gertrud
elly
gisela
1 2
2 3
3 2
2 4
4 2
2 1
1 5
5 1
1 6
6 1

However, the maze may be very large, so Homura nees a program to help her.

Input The first line contains an integer T(T<=20), indicating the number of test cases.
For each case there is only one string on a line, Madoka's log.
It is guaranteed that the maze consists of at most 50000 rooms, and the names of Witches is a string consists of at most 10 lowercase characters, while the string of Madoka's log consists of at most 1000000 characters, which are lowercase characters, '(', ')' or ','.

Output For each case, you should output the detailed log.
The first line an integer N, the number of rooms of the maze.
The following N lines, each line a string, the name of the Witches, in the order of elimination.
The following 2(N-1) lines, each line two integers, the number of two nodes indicating the path Madoka passes.
Output a blank line after each case.

Sample Input
3 
walpurgis(charlotte(patricia,gertrud),elly,gisela) 
wuzetian 
nanoha(fate(hayate)) 

Sample Output
6 
walpurgis 
charlotte 
patricia 
gertrud 
elly 
gisela 
1 2 
2 3 
3 2 
2 4 
4 2 
2 1 
1 5 
5 1 
1 6 
6 1 

1 
wuzetian 

3 
nanoha 
fate 
hayate 
1 2 
2 3 
3 2 
2 1

Source The 36th ACM/ICPC Asia Regional Beijing Site —— Online Contest
網絡賽模擬題,做來耍耍
思路:模擬樹的先序遍歷過程!!但注意這不是二叉樹!!用棧和隊列實現即可!!
代碼:

#include 
#include 
#include 
#include 
#include 
using namespace std;

char str[1000005], ss[1000005];
char sh[105];
char ch[50005][105];

int main()
{
    int i, k, len, t, ans, num;
    bool tar;
    scanf("%d", &t);
    while(t--)
    {
        stack ST;
        scanf("%s", str);
        len = strlen(str);
        tar = true;
        num = 0;
        ans = 0;
        for(i = 0; i < len; i++)  //記錄各個字符串 
        {
            if(str[i]>='a' && str[i]<='z')
            {
                sh[ans++] = str[i];
                tar = false;
            }
            else
            {
                if(tar) continue;
                sh[ans] = 0;
                strcpy(ch[num], sh);
                num++;
                ans = 0;
                tar = true;
            }
        }
        if(!tar)
        {
            sh[ans] = 0;
            strcpy(ch[num], sh);
            num++;
        }
        printf("%d\n", num);
        for(i = 0; i < num; i++)  //輸出各個字符串 
        {
            printf("%s\n", ch[i]);
        }
        k = 1;
        for (i = 0; i < len; i++)
        {
            if(str[i] == '(') continue;
            if(str[i] >= 'a' && str[i] <= 'z' && (i+1 >= len || str[i+1] < 'a' || str[i+1] > 'z'))
            {
                if(ST.size() > 0)
                    printf ("%d %d\n", ST.top(), k);  //進棧過程輸出 
                ST.push(k++);
            }
            if(str[i] == ',' || str[i] == ')')     //出棧過程輸出 
            {
                printf("%d ", ST.top());     
                ST.pop();
                printf("%d\n", ST.top());
            }
        }
        putchar(10);     //記得換行!! 
    }
    return 0;
}



  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved