#P1909. Island Puzzle
Island Puzzle
Island Puzzle
题面翻译
给定一个环,点的编号为 ,其中 和 相邻,且 和 相邻。每个点上有一个 范围内的数,且每个点上的数互不相同。每次可以交换 所在的点和任意一个与其相邻的点的数,问能否达成指定的状态。
题目描述
A remote island chain contains islands, labeled through . Bidirectional bridges connect the islands to form a simple cycle — a bridge connects islands and , islands and , and so on, and additionally a bridge connects islands and . The center of each island contains an identical pedestal, and all but one of the islands has a fragile, uniquely colored statue currently held on the pedestal. The remaining island holds only an empty pedestal.
The islanders want to rearrange the statues in a new order. To do this, they repeat the following process: First, they choose an island directly adjacent to the island containing an empty pedestal. Then, they painstakingly carry the statue on this island across the adjoining bridge and place it on the empty pedestal.
Determine if it is possible for the islanders to arrange the statues in the desired order.
输入格式
The first line contains a single integer ( ) — the total number of islands.
The second line contains space-separated integers ( ) — the statue currently placed on the -th island. If , then the island has no statue. It is guaranteed that the are distinct.
The third line contains space-separated integers ( ) — the desired statues of the th island. Once again, indicates the island desires no statue. It is guaranteed that the are distinct.
输出格式
Print "YES" (without quotes) if the rearrangement can be done in the existing network, and "NO" otherwise.
样例 #1
样例输入 #1
3
1 0 2
2 0 1
样例输出 #1
YES
样例 #2
样例输入 #2
2
1 0
0 1
样例输出 #2
YES
样例 #3
样例输入 #3
4
1 2 3 0
0 3 2 1
样例输出 #3
NO
提示
In the first sample, the islanders can first move statue from island to island , then move statue from island to island , and finally move statue from island to island .
In the second sample, the islanders can simply move statue from island to island .
In the third sample, no sequence of movements results in the desired position.