結果
問題 | No.74 貯金箱の退屈 |
ユーザー | roaris |
提出日時 | 2019-08-29 22:44:09 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,439 bytes |
コンパイル時間 | 257 ms |
コンパイル使用メモリ | 82,280 KB |
実行使用メモリ | 54,116 KB |
最終ジャッジ日時 | 2024-11-17 17:27:08 |
合計ジャッジ時間 | 2,663 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,400 KB |
testcase_01 | AC | 40 ms
52,596 KB |
testcase_02 | AC | 39 ms
52,688 KB |
testcase_03 | AC | 39 ms
53,356 KB |
testcase_04 | AC | 40 ms
52,336 KB |
testcase_05 | AC | 40 ms
53,152 KB |
testcase_06 | AC | 40 ms
52,992 KB |
testcase_07 | WA | - |
testcase_08 | AC | 41 ms
52,700 KB |
testcase_09 | AC | 40 ms
52,648 KB |
testcase_10 | AC | 41 ms
54,000 KB |
testcase_11 | AC | 41 ms
53,844 KB |
testcase_12 | WA | - |
testcase_13 | AC | 40 ms
53,028 KB |
testcase_14 | AC | 41 ms
53,944 KB |
testcase_15 | AC | 41 ms
52,580 KB |
testcase_16 | AC | 41 ms
54,108 KB |
testcase_17 | AC | 40 ms
53,800 KB |
testcase_18 | AC | 39 ms
52,828 KB |
testcase_19 | AC | 39 ms
52,076 KB |
testcase_20 | AC | 40 ms
53,172 KB |
testcase_21 | AC | 39 ms
53,436 KB |
testcase_22 | AC | 40 ms
52,652 KB |
testcase_23 | AC | 38 ms
52,492 KB |
testcase_24 | AC | 39 ms
52,876 KB |
testcase_25 | AC | 40 ms
54,116 KB |
testcase_26 | AC | 41 ms
53,076 KB |
testcase_27 | AC | 40 ms
53,460 KB |
testcase_28 | AC | 41 ms
52,896 KB |
testcase_29 | AC | 40 ms
52,860 KB |
testcase_30 | AC | 41 ms
54,100 KB |
testcase_31 | AC | 40 ms
52,332 KB |
testcase_32 | AC | 39 ms
52,896 KB |
ソースコード
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')