Distance Code

아직 제출이 없습니다시간 제한1초메모리 제한1024 MB

문제

Your task is to create a program that can be used in two ways: as an encoder and as a decoder.

The encoder is given a tree of nn nodes and it removes all nodes from the tree. On each step, the encoder may remove any leaf from the current tree.

The decoder is given a list of distances between successively removed nodes by the encoder, and it has to reconstruct the original structure of the tree.

The decoder has to create any tree that has the same structure as the original tree (more precisely, it has to be isomorphic to the original tree).

입력

The first line has an integer tt that is either 11 (encoder) or 22 (decoder).

The second line has an integer nn: the number of nodes in the tree. The nodes are numbered 1,2,,n1,2,\dots,n.

If t=1t=1, there are then n1n-1 lines that describe the tree. Each line has two integers aa and bb: there is an edge between nodes aa and bb.

If t=2t=2, there is only one line that has n1n-1 integers: the distances between successively removed nodes.

출력

If t=1t=1, the encoder has to print a permutation of numbers 1,2,,n1,2,\dots,n: the order in which the nodes are removed from the tree.

If t=2t=2, the decoder has to print n1n-1 lines that describe the structure of the tree.