結果

問題 No.74 貯金箱の退屈
ユーザー convexineqconvexineq
提出日時 2020-12-06 22:17:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 5,000 ms
コード長 1,307 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 81,728 KB
実行使用メモリ 53,476 KB
最終ジャッジ日時 2023-10-17 15:37:42
合計ジャッジ時間 2,915 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,476 KB
testcase_01 AC 38 ms
53,476 KB
testcase_02 AC 37 ms
53,476 KB
testcase_03 AC 37 ms
53,476 KB
testcase_04 AC 37 ms
53,476 KB
testcase_05 AC 37 ms
53,476 KB
testcase_06 AC 38 ms
53,476 KB
testcase_07 AC 37 ms
53,476 KB
testcase_08 AC 36 ms
53,476 KB
testcase_09 AC 35 ms
53,476 KB
testcase_10 AC 39 ms
53,476 KB
testcase_11 AC 37 ms
53,476 KB
testcase_12 AC 38 ms
53,476 KB
testcase_13 AC 37 ms
53,476 KB
testcase_14 AC 36 ms
53,476 KB
testcase_15 AC 35 ms
53,476 KB
testcase_16 AC 36 ms
53,476 KB
testcase_17 AC 36 ms
53,476 KB
testcase_18 AC 36 ms
53,476 KB
testcase_19 AC 35 ms
53,476 KB
testcase_20 AC 35 ms
53,476 KB
testcase_21 AC 36 ms
53,476 KB
testcase_22 AC 37 ms
53,476 KB
testcase_23 AC 36 ms
53,476 KB
testcase_24 AC 37 ms
53,476 KB
testcase_25 AC 38 ms
53,476 KB
testcase_26 AC 37 ms
53,476 KB
testcase_27 AC 36 ms
53,476 KB
testcase_28 AC 36 ms
53,476 KB
testcase_29 AC 37 ms
53,476 KB
testcase_30 AC 37 ms
53,476 KB
testcase_31 AC 38 ms
53,476 KB
testcase_32 AC 38 ms
53,476 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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")
0