結果

問題 No.74 貯金箱の退屈
ユーザー gigurururugigurururu
提出日時 2014-11-25 18:30:02
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 622 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-06-10 22:22:05
合計ジャッジ時間 1,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,752 KB
testcase_01 AC 28 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 27 ms
10,752 KB
testcase_11 AC 25 ms
10,624 KB
testcase_12 AC 25 ms
10,752 KB
testcase_13 AC 25 ms
10,752 KB
testcase_14 AC 25 ms
10,752 KB
testcase_15 AC 28 ms
10,752 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 25 ms
10,752 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 25 ms
10,880 KB
testcase_22 AC 25 ms
10,752 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 27 ms
10,624 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 AC 24 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
d=map(int,input().split())
w=map(int,input().split())

uf=list(range(n))
rv=[False]*n

def find(n):
    if n==uf[n]:
        return n 
    else:
        uf[n]=find(uf[n])
        return uf[n]

def union(a,b):
    uf[find(a)]=find(b)

for i,di in enumerate(d):
    union((i+di)%n,(i-di)%n)
    if (i+di)%n==(i-di)%n: rv[(i+di)%n]=True

for i,b in enumerate(rv):
    if b: rv[find(i)]=True

for i in set(uf):
    cnt=0
    for n,wi in enumerate(w):
        if  uf[n]==i and wi==0: cnt+=1
    if not rv[i] and cnt%2!=0:
        print("No")
        break
else:
    print("Yes")
0