結果
問題 | No.583 鉄道同好会 |
ユーザー | rlangevin |
提出日時 | 2023-02-20 01:29:46 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 97 ms / 2,000 ms |
コード長 | 1,253 bytes |
コンパイル時間 | 288 ms |
コンパイル使用メモリ | 82,120 KB |
実行使用メモリ | 76,160 KB |
最終ジャッジ日時 | 2024-07-20 22:05:47 |
合計ジャッジ時間 | 2,722 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 41 ms
52,352 KB |
testcase_01 | AC | 41 ms
52,224 KB |
testcase_02 | AC | 41 ms
51,840 KB |
testcase_03 | AC | 40 ms
51,840 KB |
testcase_04 | AC | 41 ms
52,224 KB |
testcase_05 | AC | 41 ms
52,224 KB |
testcase_06 | AC | 45 ms
51,840 KB |
testcase_07 | AC | 41 ms
52,096 KB |
testcase_08 | AC | 41 ms
52,096 KB |
testcase_09 | AC | 41 ms
52,224 KB |
testcase_10 | AC | 44 ms
53,504 KB |
testcase_11 | AC | 76 ms
75,264 KB |
testcase_12 | AC | 79 ms
75,520 KB |
testcase_13 | AC | 78 ms
75,776 KB |
testcase_14 | AC | 78 ms
75,520 KB |
testcase_15 | AC | 86 ms
75,392 KB |
testcase_16 | AC | 92 ms
75,648 KB |
testcase_17 | AC | 95 ms
76,160 KB |
testcase_18 | AC | 97 ms
75,648 KB |
ソースコード
import sys readline = sys.stdin.readline class UnionFind(object): def __init__(self, n=1): self.par = [i for i in range(n)] self.rank = [0 for _ in range(n)] self.size = [1 for _ in range(n)] def find(self, x): if self.par[x] == x: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.rank[x] < self.rank[y]: x, y = y, x if self.rank[x] == self.rank[y]: self.rank[x] += 1 self.par[y] = x self.size[x] += self.size[y] def is_same(self, x, y): return self.find(x) == self.find(y) def get_size(self, x): x = self.find(x) return self.size[x] N, M = map(int, readline().split()) G = [0] * N U = UnionFind(N) for i in range(M): u, v = map(int, readline().split()) G[u] += 1 G[v] += 1 U.union(u, v) odd = 0 cnt = 0 maxv = 0 for i in range(N): if G[i] % 2: odd += 1 if G[i]: cnt += 1 maxv = max(maxv, U.get_size(i)) if odd <= 2 and maxv == cnt: print("YES") else: print("NO")