結果
問題 | No.583 鉄道同好会 |
ユーザー | AEn |
提出日時 | 2022-06-16 23:22:59 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 237 ms / 2,000 ms |
コード長 | 2,275 bytes |
コンパイル時間 | 352 ms |
コンパイル使用メモリ | 82,464 KB |
実行使用メモリ | 79,844 KB |
最終ジャッジ日時 | 2024-10-07 08:12:12 |
合計ジャッジ時間 | 4,003 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 63 ms
68,840 KB |
testcase_01 | AC | 62 ms
68,972 KB |
testcase_02 | AC | 62 ms
67,352 KB |
testcase_03 | AC | 64 ms
67,836 KB |
testcase_04 | AC | 63 ms
68,052 KB |
testcase_05 | AC | 63 ms
67,420 KB |
testcase_06 | AC | 64 ms
69,144 KB |
testcase_07 | AC | 62 ms
68,524 KB |
testcase_08 | AC | 63 ms
68,960 KB |
testcase_09 | AC | 62 ms
68,396 KB |
testcase_10 | AC | 66 ms
69,732 KB |
testcase_11 | AC | 198 ms
79,844 KB |
testcase_12 | AC | 191 ms
79,304 KB |
testcase_13 | AC | 185 ms
79,088 KB |
testcase_14 | AC | 186 ms
79,540 KB |
testcase_15 | AC | 192 ms
79,232 KB |
testcase_16 | AC | 225 ms
79,272 KB |
testcase_17 | AC | 228 ms
78,976 KB |
testcase_18 | AC | 237 ms
79,284 KB |
ソースコード
from typing import List class UnionFind: """0-indexed""" def __init__(self, n): self.n = n self.parent = [-1] * n self.__group_count = n def unite(self, x, y) -> bool: """xとyをマージ""" x = self.root(x) y = self.root(y) if x == y: return False self.__group_count -= 1 if self.parent[x] > self.parent[y]: x, y = y, x self.parent[x] += self.parent[y] self.parent[y] = x return True def is_same(self, x, y) -> bool: """xとyが同じ連結成分か判定""" return self.root(x) == self.root(y) def root(self, x) -> int: """xの根を取得""" if self.parent[x] < 0: return x else: # 経路圧縮あり # self.parent[x] = self.root(self.parent[x]) # return self.parent[x] # 経路圧縮なし return self.root(self.parent[x]) def size(self, x) -> int: """xが属する連結成分のサイズを取得""" return -self.parent[self.root(x)] def all_sizes(self) -> List[int]: """全連結成分のサイズのリストを取得 O(N) """ sizes = [] for i in range(self.n): size = self.parent[i] if size < 0: sizes.append(-size) return sizes def groups(self) -> List[List[int]]: """全連結成分の内容のリストを取得 O(N・α(N))""" groups = dict() for i in range(self.n): p = self.root(i) if not groups.get(p): groups[p] = [] groups[p].append(i) return list(groups.values()) @property def group_count(self) -> int: """連結成分の数を取得 O(1)""" return self.__group_count N, M = map(int, input().split()) v = [0]*N vv = set() uf = UnionFind(N) for i in range(M): a, b = map(int, input().split()) vv.add(a) vv.add(b) uf.unite(a, b) v[a] += 1 v[b] += 1 if uf.group_count != 1+(N-len(vv)): print('NO') else: cnt = 0 for i in range(N): if v[i]%2==1: cnt += 1 if cnt>=3: print('NO') else: print('YES')