class UnionFind: def __init__(self, n): self.parent = list(range(n)) #親ノード self.size = [1]*n #グループの要素数 def root(self, x): #root(x): xの根ノードを返す. while self.parent[x] != x: self.parent[x] = self.parent[self.parent[x]] x = self.parent[x] return x def merge(self, x, y): #merge(x,y): xのいる組とyのいる組をまとめる x, y = self.root(x), self.root(y) if x == y: return False if self.size[x] < self.size[y]: x,y=y,x #xの要素数が大きいように self.size[x] += self.size[y] #xの要素数を更新 self.parent[y] = x #yをxにつなぐ return True def issame(self, x, y): #same(x,y): xとyが同じ組ならTrue return self.root(x) == self.root(y) def getsize(self,x): #size(x): xのいるグループの要素数を返す return self.size[self.root(x)] n = int(input()) *d, = map(int,input().split()) *w, = map(int,input().split()) UF = UnionFind(n+1) for i,di in enumerate(d): x = (i+di)%n y = (i-di)%n UF.merge(x,n if x==y else y) ura = [0]*n for i,wi in enumerate(w): if wi==0 and not UF.issame(i,n): ura[UF.root(i)] ^= 1 print("Yes" if all(ri==0 for ri in ura) else "No")