题库练习 Hashing Trees
← 上一题 下一题 →

A11372 | Hashing Trees

时间限制1s
内存限制256MB
通过 / 提交0/0

题目描述

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 $a_{0},a_{1},...,a_{h}$ , where $h$ is the height of the tree, and $a_{i}$ 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 $a_{i}$ , 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<=10^{5}$ ) — the height of the tree.

The second line contains $h+1$ integers — the sequence $a_{0},a_{1},...,a_{h}$ ( $1<=a_{i}<=2·10^{5}$ ). The sum of all $a_{i}$ does not exceed $2·10^{5}$ . 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 ![](/uploads/acgo/image/c0006410022e613d_0f197ba0a562.jpeg) 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
C++ 编辑器
输入
输出