测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10132. Spongebob and Joke

编程题 普及/提高-

题目描述

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 $a_{1},a_{2},...,a_{m}$ of length $m$ , consisting of integers from $1$ to $n$ , not necessarily distinct. Then he picked some sequence $f_{1},f_{2},...,f_{n}$ of length $n$ and for each number $a_{i}$ got number $b_{i}=f_{ai}$ . To finish the prank he erased the initial sequence $a_{i}$ .

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.

输入格式

The first line of the input contains two integers $n$ and $m$ ( $1<=n,m<=100000$ ) — the lengths of sequences $f_{i}$ and $b_{i}$ respectively.

The second line contains $n$ integers, determining sequence $f_{1},f_{2},...,f_{n}$ ( $1<=f_{i}<=n$ ).

The last line contains $m$ integers, determining sequence $b_{1},b_{2},...,b_{m}$ $(1<=b_{i}<=n)$ .

输出格式

Print "Possible" if there is exactly one sequence $a_{i}$ , such that $b_{i}=f_{ai}$ for all $i$ from $1$ to $m$ . Then print $m$ integers $a_{1},a_{2},...,a_{m}$ .

If there are multiple suitable sequences $a_{i}$ , print "Ambiguity".

If Spongebob has made a mistake in his calculations and no suitable sequence $a_{i}$ exists, print "Impossible".

输入输出样例

输入 #1
3 3
3 2 1
1 2 3
输出 #1
Possible
3 2 1 
输入 #2
3 3
1 1 1
1 1 1
输出 #2
Ambiguity
输入 #3
3 3
1 2 1
3 3 3
输出 #3
Impossible

说明/提示

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 $f_{i}≠3$ for all $i$ , so no sequence $a_{i}$ transforms into such $b_{i}$ and we can say for sure that Spongebob has made a mistake.
上一题 去做题 下一题