#|Hashing Trees (思维+构造)

Hashing Trees

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.

Input 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.
Output 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 printintegers, 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.
Examples Input

2 1 1 1

Output
perfect

Input
2 1 2 2

Output
ambiguous 0 1 1 3 3 0 1 1 3 2

Note The only tree in the first example and the two printed trees from the second example are shown on the picture:


【#|Hashing Trees (思维+构造)】题意:
给一个数字h代表一棵树的高度,然后给出h+1个数字,代表从根节点到h层(高度从0-h)每一层的节点个数,让你判断这棵树是否唯一,如果只有一种输出perfect,如果不唯一建立两棵非同构的树,输出每个节点的并且第一行输出ambiguous下两行
分别依次输出每个点的父亲节点编号,根节点父亲是0。
思路:
一、首先看树唯一的情况,如果当前一层和上一层都有多个节点,那就肯定不唯一,因为当前的每个点都可以在上一层的任意一个点上。反之其他三种情况都可以1、当前层和上一层节点都是1个毫无疑问一种。2、上一层一个,当前层多个,这多个的父亲都只能是上面一层的那一个所以一种。3、上一层多个,当前层1个这一个可以再上面任意一个节点上因此相当于是同构的。
二、因此容易判断perfect的情况,其他情况都是ambiguous情况,只需要考虑如何构建两个不同构的树即可。第一种方法,将当前层的节点都连在上一层最后一个节点上,所以每次要储存最后一个节点编号 root初始化0,root + num[i](这一层的节点个数),就是这一层最后一个节点编号,所以每次输出更新后的root即可。第二种方法只需要当相邻两层都有多个节点的时候,把其他按照方法一输出,最后一个节点的父亲输出上一层倒数第二个节点,即root-1即可。
code:
#include #include #include using namespace std; const int maxn = 1e5+10; int main(){ int n,num[maxn],root = 0; bool flag = 1; num[0] = 1; scanf("%d",&n); for(int i = 0; i <= n; i++){ scanf("%d",&num[i]); if(i == 0) continue; if(num[i-1] != 1 && num[i] != 1){ flag = 0; } } if(flag){ printf("perfect\n"); return 0; } printf("ambiguous\n"); printf("%d",root); root += num[0]; for(int i = 1; i <= n; i++){ for(int j = 1; j <= num[i]; j++){ printf(" %d",root); } root += num[i]; } printf("\n"); root = 0; printf("%d",root); root += num[0]; for(int i = 1; i <= n; i++){ if(i != 0 && num[i-1] != 1 && num[i] != 1){ for(int j = 1; j <= num[i]-1; j++) printf(" %d",root); printf(" %d",root-1); root += num[i]; continue; } for(int j = 1; j <= num[i]; j++){ printf(" %d",root); } root += num[i]; } return 0; }


    推荐阅读