CF901A.Hashing Trees
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Sasha is taking part in a programming competition. In one of the problems she should check if some rooted trees are isomorphic or not. She has never seen this problem before, but, being an experienced participant, she guessed that she should match trees to some sequences and then compare these sequences instead of trees. Sasha wants to match each tree with a sequence a0,a1,...,ah , where h is the height of the tree, and ai equals to the number of vertices that are at distance of i edges from root.
Unfortunately, this time Sasha's intuition was wrong, and there could be several trees matching the same sequence. To show it, you need to write a program that, given the sequence ai , builds two non-isomorphic rooted trees that match that sequence, or determines that there is only one such tree.
Two rooted trees are isomorphic, if you can reenumerate the vertices of the first one in such a way, that the index of the root becomes equal the index of the root of the second tree, and these two trees become equal.
The height of a rooted tree is the maximum number of edges on a path from the root to any other vertex.
输入格式
The first line contains a single integer h ( 2<=h<=105 ) — the height of the tree.
The second line contains h+1 integers — the sequence a0,a1,...,ah ( 1<=ai<=2⋅105 ). The sum of all ai does not exceed 2⋅105 . It is guaranteed that there is at least one tree matching this sequence.
输出格式
If there is only one tree matching this sequence, print "perfect".
Otherwise print "ambiguous" in the first line. In the second and in the third line print descriptions of two trees in the following format: in one line print integers, the k -th of them should be the parent of vertex k or be equal to zero, if the k -th vertex is the root.
These treese should be non-isomorphic and should match the given sequence.
输入输出样例
输入#1
2 1 1 1
输出#1
perfect
输入#2
2 1 2 2
输出#2
ambiguous 0 1 1 3 3 0 1 1 3 2
说明/提示
The only tree in the first example and the two printed trees from the second example are shown on the picture: