24h購物| | PChome| 登入
2012-10-06 19:27:56| 人氣660| 回應0 | 上一篇 | 下一篇

[UVA][樹走訪] 10562 - Undraw the Trees

推薦 0 收藏 0 轉貼0 訂閱站台

Problem D
Undraw
the Trees
Input: Standard Input

Output: Standard Output

Time Limit: 2 Seconds

 

Professor Homer has been reported missing. We suspect that his recent research works might have had something to with this. But we really don't know much about what he was working on! The detectives tried to hack into his computer, but after hours of failed efforts they realized that the professor had been lot more intelligent than them. If only they could realize that the professor must have been absent minded they could get the clue rightaway. We at the crime lab were not at all surprised when the professor's works were found in a 3.5" floppy disk left inside the drive.

The disk contained only one text file in which the professor had drawn many trees with ASCII characters. Before we can proceed to the next level of investigation we would like to match the trees drawn with the ones that we have in our database. Now you are the computer geek -- we leave this trivial task for you. Convert professor's trees to our trees.

Professor's Trees

The first line of the input file (which you can assume comes from standard input) contains the number of trees, T (1 <= T <= 20) drawn in the file. Then you would have T trees, each ending with a single hash ('#') mark at the beginning of the line. All the trees drawn here are drawn vertically in top down fashion. The labels of each of node can be any printable character except for the symbols '-', '|', ' ' (space) and '#'. Every node that has children has a '|' symbol drawn just below itself. And in the next line there would be a series of '-' marks at least as long as to cover all the immediate children. The sample input section will hopefully clarify your doubts if there is any. No tree drawn here requires more than 200 lines, and none of them has more than 200 characters in one line.

Our Trees

Our trees are drawn with parenthesis and the node labels. Every subtree starts with an opening parenthesis and ends with a closing parenthesis; inside the parenthesis the node labels are listed. The sub trees are always listed from left to right. In our database each tree is written as a single string in one line, and they do not contain any character except for the node labels and the parenthesis pair. The node labels can be repeated if the original tree had such repetitions.

 

 

Sample Professor’s Trees      Corresponding Our Trees

2

    A

    |

--------

B  C   D

   |   |

 ----- -

 E   F G

#

e

|

----

f g

#

 

(A(B()C(E()F())D(G())))

(e(f()g()))

 


Problemsetter: Monirul Hasan, Member of Elite Problemsetters' Panel



#include <stdio.h>
#include <string.h>
char g[205][205];
void dfs(int x, int y) {
    putchar(g[x][y]);
    putchar('(');
    x++;
    while(g[x][y] == '|')   x++;
    while(y >= 0 && g[x][y] == '-')   y--;
    y++;
    if(g[x][y] == '-') {
        while(g[x][y] == '-') {
            if(g[x+1][y] != ' ' && g[x+1][y] != 0)
                dfs(x+1, y);
            y++;
        }
    }
    putchar(')');
}
int main() {
    int t, i;
    scanf("%d", &t);
    while((i = getchar()) != '\n');
    while(t--) {
        memset(g, 0, sizeof(g));
        int n = 0;
        while(gets(g[n])) {
            if(g[n][0] == '#')  break;
            n++;
        }
        int root = -1;
        if(n > 0)
        for(i = 0; g[0][i]; i++) {
            if(g[0][i] != ' ') {
                root = i;
                break;
            }
        }
        putchar('(');
        if(root != -1)
            dfs(0, root);
        putchar(')');
        puts("");
    }
    return 0;
}

台長: Morris
人氣(660) | 回應(0)| 推薦 (0)| 收藏 (0)| 轉寄
全站分類: 不分類 | 個人分類: UVA |
此分類下一篇:[UVA][Greedy] 10527 - Persistent Numbers
此分類上一篇:[UVA][TSP] 10944 - Nuts for nuts..

是 (若未登入"個人新聞台帳號"則看不到回覆唷!)
* 請輸入識別碼:
請輸入圖片中算式的結果(可能為0) 
(有*為必填)
TOP
詳全文