結果
問題 | No.74 貯金箱の退屈 |
ユーザー | convexineq |
提出日時 | 2020-12-06 22:17:27 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 36 ms / 5,000 ms |
コード長 | 1,307 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,192 KB |
実行使用メモリ | 53,804 KB |
最終ジャッジ日時 | 2024-09-17 13:18:50 |
合計ジャッジ時間 | 2,341 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 32 ms
53,096 KB |
testcase_01 | AC | 31 ms
53,572 KB |
testcase_02 | AC | 35 ms
52,948 KB |
testcase_03 | AC | 36 ms
52,396 KB |
testcase_04 | AC | 34 ms
52,516 KB |
testcase_05 | AC | 32 ms
52,520 KB |
testcase_06 | AC | 32 ms
53,804 KB |
testcase_07 | AC | 35 ms
53,324 KB |
testcase_08 | AC | 33 ms
53,012 KB |
testcase_09 | AC | 33 ms
52,940 KB |
testcase_10 | AC | 35 ms
52,216 KB |
testcase_11 | AC | 34 ms
52,744 KB |
testcase_12 | AC | 34 ms
53,476 KB |
testcase_13 | AC | 36 ms
53,732 KB |
testcase_14 | AC | 34 ms
53,720 KB |
testcase_15 | AC | 34 ms
53,300 KB |
testcase_16 | AC | 33 ms
52,752 KB |
testcase_17 | AC | 34 ms
52,668 KB |
testcase_18 | AC | 33 ms
53,208 KB |
testcase_19 | AC | 34 ms
53,200 KB |
testcase_20 | AC | 33 ms
52,512 KB |
testcase_21 | AC | 32 ms
53,048 KB |
testcase_22 | AC | 31 ms
53,216 KB |
testcase_23 | AC | 32 ms
52,476 KB |
testcase_24 | AC | 33 ms
53,704 KB |
testcase_25 | AC | 33 ms
52,940 KB |
testcase_26 | AC | 34 ms
53,060 KB |
testcase_27 | AC | 33 ms
53,104 KB |
testcase_28 | AC | 33 ms
53,280 KB |
testcase_29 | AC | 33 ms
52,900 KB |
testcase_30 | AC | 36 ms
52,268 KB |
testcase_31 | AC | 35 ms
53,324 KB |
testcase_32 | AC | 33 ms
53,684 KB |
ソースコード
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")