結果

問題 No.74 貯金箱の退屈
ユーザー roarisroaris
提出日時 2019-08-29 22:46:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 1,439 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 54,468 KB
最終ジャッジ日時 2024-11-17 17:27:11
合計ジャッジ時間 2,498 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,688 KB
testcase_01 AC 40 ms
52,768 KB
testcase_02 AC 40 ms
52,980 KB
testcase_03 AC 41 ms
53,728 KB
testcase_04 AC 42 ms
54,468 KB
testcase_05 AC 41 ms
53,384 KB
testcase_06 AC 41 ms
52,732 KB
testcase_07 AC 41 ms
53,816 KB
testcase_08 AC 41 ms
53,604 KB
testcase_09 AC 40 ms
52,688 KB
testcase_10 AC 39 ms
53,532 KB
testcase_11 AC 39 ms
53,500 KB
testcase_12 AC 40 ms
52,792 KB
testcase_13 AC 40 ms
52,864 KB
testcase_14 AC 41 ms
53,448 KB
testcase_15 AC 41 ms
53,180 KB
testcase_16 AC 40 ms
53,880 KB
testcase_17 AC 41 ms
53,948 KB
testcase_18 AC 39 ms
53,564 KB
testcase_19 AC 39 ms
53,004 KB
testcase_20 AC 40 ms
53,808 KB
testcase_21 AC 40 ms
53,904 KB
testcase_22 AC 40 ms
52,756 KB
testcase_23 AC 39 ms
52,864 KB
testcase_24 AC 41 ms
53,708 KB
testcase_25 AC 41 ms
52,680 KB
testcase_26 AC 39 ms
53,076 KB
testcase_27 AC 40 ms
52,944 KB
testcase_28 AC 40 ms
53,020 KB
testcase_29 AC 41 ms
53,200 KB
testcase_30 AC 40 ms
52,404 KB
testcase_31 AC 41 ms
53,780 KB
testcase_32 AC 41 ms
53,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class Unionfind:
    def __init__(self, n):
        self.par = [-1] * n
        self.rank = [1] * n
    
    def root(self, x):
        if self.par[x] < 0:
            return x
            
        self.par[x] = self.root(self.par[x])
        
        return self.par[x]
    
    def unite(self, x, y):
        rx, ry = self.root(x), self.root(y)
        
        if rx != ry:
            if self.rank[rx] >= self.rank[ry]:
                self.par[rx] += self.par[ry]
                self.par[ry] = rx
                
                if self.rank[rx] == self.rank[ry]:
                    self.rank[rx] += 1
            else:
                self.par[ry] += self.par[rx]
                self.par[rx] = ry
    
    def is_same(self, x, y):
        return self.root(x) == self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

N = int(input())
D = list(map(int, input().split()))
W = list(map(int, input().split()))
uf = Unionfind(N)
s = []

for i in range(N):
    if (i+D[i])%N == (i-D[i])%N:
        s.append((i+D[i])%N)
        
    uf.unite((i+D[i])%N, (i-D[i])%N)

d = {i: [0, 0, 0] for i in range(N)}

for i in range(N):
    d[uf.root(i)][W[i]] += 1
    
    if i in s:
        d[uf.root(i)][2] += 1

for i in range(N):
    if d[i] == [0, 0, 0]:
        continue
    
    if d[i][2] == 0 and d[i][0] % 2 == 1:
        print('No')
        break
else:
    print('Yes')
0