CodeForces 634A-Island Puzzle【找规律】

Love The Way You Lie 2022-08-21 00:20 96阅读 0赞

A. Island Puzzle

time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

A remote island chain contains n islands, labeled 1 through n. Bidirectional bridges connect the islands to form a simple cycle — a bridge connects islands 1 and 2, islands 2 and 3, and so on, and additionally a bridge connects islands n and 1. 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.

Input

The first line contains a single integer n (2 ≤ n ≤ 200 000) — the total number of islands.

The second line contains n space-separated integers a**i (0 ≤ a**i ≤ n - 1) — the statue currently placed on the i-th island. If a**i = 0, then the island has no statue. It is guaranteed that the a**i are distinct.

The third line contains n space-separated integers b**i (0 ≤ b**i ≤ n - 1) — the desired statues of the ith island. Once again, b**i = 0 indicates the island desires no statue. It is guaranteed that the b**i are distinct.

Output

Print “YES” (without quotes) if the rearrangement can be done in the existing network, and “NO” otherwise.

Examples

Input

  1. 3
  2. 1 0 2
  3. 2 0 1

Output

  1. YES

Input

  1. 2
  2. 1 0
  3. 0 1

Output

  1. YES

Input

  1. 4
  2. 1 2 3 0
  3. 0 3 2 1

Output

  1. NO

Note

In the first sample, the islanders can first move statue 1 from island 1 to island 2, then move statue 2 from island 3 to island 1, and finally move statue 1 from island 2 to island 3.

In the second sample, the islanders can simply move statue 1 from island 1 to island 2.

In the third sample, no sequence of movements results in the desired position.

解题思路:

题目大意是有N座岛,我们可以假设这些岛是横向顺次连接的,并且最后一个岛和第一个岛也是相连的,现在这个数列中有一个0,它的作用就是0可以和相邻的两个位置上的数字互换位置从而到达和下面数列相同的状态。

多试几组数据我们会发现,其实零不加入到数组中,因为不管怎么移动,除一之外其他的数都会是一个顺序,只不过开始的坐标不同,for example 1230,可以变成0231,所以我们只需要找到第二个数组中第一个数组的第一个数的下标,在第二数组遍历一遍。

  1. #include<stdio.h>
  2. #include<string.h>
  3. #include<algorithm>
  4. using namespace std;
  5. int a[10000+200000],b[200000+10000];
  6. int main()
  7. {
  8. int n;
  9. while(scanf("%d",&n)!=EOF)
  10. {
  11. int i,j=0;
  12. for(i=0;i<n;i++)
  13. {
  14. int x;
  15. scanf("%d",&x);
  16. if(x==0)
  17. {
  18. continue;
  19. }
  20. a[j++]=x;
  21. }
  22. int pos;
  23. j=0;
  24. for(i=0;i<n;i++)
  25. {
  26. int x;
  27. scanf("%d",&x);
  28. if(x==0)
  29. continue;
  30. b[j++]=x;
  31. if(x==a[0])
  32. {
  33. pos=j-1;
  34. }
  35. }
  36. bool f=false;
  37. for(i=0;i<n-1;i++)
  38. {
  39. if(a[i]!=b[(i+pos)%(n-1)])
  40. f=true;
  41. }
  42. if(f)
  43. {
  44. printf("NO\n");
  45. }
  46. else
  47. printf("YES\n");
  48. }
  49. return 0;
  50. }

发表评论

表情:
评论列表 (有 0 条评论,96人围观)

还没有评论,来说两句吧...

相关阅读

    相关 [Codeforces613E]Puzzle Lover

    Problem 给你2\n的格子,每个格子有一个字母,从任意一点出发,不重复的经过上下左右,生成要求的字符串。问有几种不同的走法。 Solution ![1232