8VC Venture Cup 2016 - Final Round (Div. 1 Edition) A. Island Puzzle
A. Island Puzzle
輪の回転しかできない。それぞれ0
を除いて適当なものを先頭にもってきて比較。
#!/usr/bin/env python3
n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
a.remove(0)
b.remove(0)
i = a.index(1)
a = a[i:] + a[:i]
i = b.index(1)
b = b[i:] + b[:i]
print(['NO','YES'][a == b])