Codeforces Round #453 (Div. 2) C

C. Hashing Trees
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

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 his 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 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.

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:



emm  刚开始不是很懂题意   输入 表示 一层几个 节点   然后 找出两个构造不一样的 随意输出顺序就好




#include<bits/stdc++.h>
using namespace std;
#define maxn 1000000+100
int a[maxn];
int b[maxn];
int c[maxn];
int main(){
    int n;
    cin>>n;
    int l;
    for(int j=1;j<=n+1;j++){
       cin>>a[j];
    }
    bool i=0;
    for(int j=1;j<=n;j++){
       if(a[j]!=1&&a[j+1]!=1){
          i=1;
          l=j;
          break;
       }
    }
    if(!i){
       cout<<"perfect"<<endl;
       return 0;
    }
    int z=1;
   // cout<<"0"<<" ";
   cout<<"ambiguous"<<endl;
    for(int j=1;j<=n+1;j++){
        for(int k=z;k<z+a[j];k++){
           //b[k]=j;
           cout<<z-1<<" ";
        }
        z+=a[j];
    }
    cout<<endl;
   z=0;

   for(int j=1;j<=n+1;j++){
      if(j!=l+1){
         for(int k=0;k<a[j];k++){
            cout<<z<<" ";
         }
      }
      else{
          cout<<z-1<<" ";
          for(int k=0;k<a[j]-1;k++){
             cout<<z<<" ";
          }
      }
      z+=a[j];
   }

    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值