I am a slow walker,but I never walk backwards. Abraham Lincoln

GeekZRF

Codeforces 599B. Spongebob and Joke 模拟

B. Spongebob and Joke
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

While Patrick was gone shopping, Spongebob decided to play a little trick on his friend. The naughty Sponge browsed through Patrick's personal stuff and found a sequence a1, a2, ..., am of length m, consisting of integers from 1 to n, not necessarily distinct. Then he picked some sequence f1, f2, ..., fn of length n and for each number ai got number bi = fai. To finish the prank he erased the initial sequence ai.

It's hard to express how sad Patrick was when he returned home from shopping! We will just say that Spongebob immediately got really sorry about what he has done and he is now trying to restore the original sequence. Help him do this or determine that this is impossible.

Input

The first line of the input contains two integers n and m (1 ≤ n, m ≤ 100 000) — the lengths of sequences fi and bi respectively.

The second line contains n integers, determining sequence f1, f2, ..., fn (1 ≤ fi ≤ n).

The last line contains m integers, determining sequence b1, b2, ..., bm (1 ≤ bi ≤ n).

Output

Print "Possible" if there is exactly one sequence ai, such that bi = fai for all i from 1 to m. Then print m integers a1, a2, ..., am.

If there are multiple suitable sequences ai, print "Ambiguity".

If Spongebob has made a mistake in his calculations and no suitable sequence ai exists, print "Impossible".

Sample test(s)
input
3 3
3 2 1
1 2 3
output
Possible
3 2 1
input
3 3
1 1 1
1 1 1
output
Ambiguity
input
3 3
1 2 1
3 3 3
output
Impossible
Note

In the first sample 3 is replaced by 1 and vice versa, while 2 never changes. The answer exists and is unique.

In the second sample all numbers are replaced by 1, so it is impossible to unambiguously restore the original sequence.

In the third sample fi ≠ 3 for all i, so no sequence ai transforms into such bi and we can say for sure that Spongebob has made a mistake.

 

题意:就是b[i]=f[a[i]],如果不可能的话输出Impossible,多种情况的话输出Ambiguity,刚好只用一种情况输出a。

 

思路:Impossible的话说明f里面没有b中的值,Ambiguity的话说明b中的值在f中有多个。用第一行中的值作为数组f下标,位置作为值。那就是a[i]=f[b[i]];

 

#include<bits/stdc++.h>
using namespace std;
int f[100010],num[100010],ans[100010];
int main()
{
    int i,n,m,a,b;
    int flag1=0,flag2=0;
    scanf("%d%d",&n,&m);
    memset(f,0,sizeof(f));
    memset(num,0,sizeof(num));
    for(i=1; i<=n; i++)
    {
        scanf("%d",&a);
        f[a]=i;
        num[a]++;
    }
    for(i=0; i<m; i++)
    {
        scanf("%d",&b);
        ans[i]=f[b];
        num[b]--;
        if(ans[i]==0) flag1=1;
        if(num[b]>0) flag2=1;
    }
    if(flag1==1) cout<<"Impossible"<<endl;
    else if(flag2==1) cout<<"Ambiguity"<<endl;
    else
    {
        cout<<"Possible"<<endl;
        for(i=0; i<m; i++)
            cout<<ans[i]<<" ";
        cout<<endl;
    }
    return 0;
}
View Code

 

posted on 2016-01-28 23:25  GeekZRF  阅读(278)  评论(0编辑  收藏  举报

导航