A10132 | Spongebob and Joke
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
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.
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)$ .
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".
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.
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.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted