303074: CF599B. Spongebob and Joke
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
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