結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | hotate29 |
提出日時 | 2023-08-12 13:53:06 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 499 ms / 2,000 ms |
コード長 | 1,086 bytes |
コンパイル時間 | 244 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 26,240 KB |
最終ジャッジ日時 | 2024-11-14 12:22:23 |
合計ジャッジ時間 | 7,522 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,752 KB |
testcase_01 | AC | 31 ms
10,880 KB |
testcase_02 | AC | 32 ms
10,880 KB |
testcase_03 | AC | 494 ms
25,984 KB |
testcase_04 | AC | 147 ms
14,464 KB |
testcase_05 | AC | 318 ms
20,864 KB |
testcase_06 | AC | 339 ms
21,504 KB |
testcase_07 | AC | 342 ms
21,504 KB |
testcase_08 | AC | 358 ms
21,760 KB |
testcase_09 | AC | 417 ms
23,936 KB |
testcase_10 | AC | 484 ms
25,856 KB |
testcase_11 | AC | 424 ms
23,936 KB |
testcase_12 | AC | 300 ms
20,096 KB |
testcase_13 | AC | 156 ms
15,360 KB |
testcase_14 | AC | 269 ms
18,944 KB |
testcase_15 | AC | 323 ms
20,736 KB |
testcase_16 | AC | 499 ms
26,240 KB |
testcase_17 | AC | 168 ms
15,488 KB |
testcase_18 | AC | 281 ms
19,200 KB |
testcase_19 | AC | 125 ms
13,568 KB |
testcase_20 | AC | 351 ms
21,888 KB |
testcase_21 | AC | 181 ms
16,256 KB |
testcase_22 | AC | 196 ms
16,512 KB |
testcase_23 | AC | 30 ms
10,624 KB |
ソースコード
class UnionFind: def __init__( self, n: int, ) -> None: self.forest = [-1] * n def union(self, x: int, y: int) -> None: x = self.findRoot(x) y = self.findRoot(y) if x == y: return if self.forest[x] > self.forest[y]: x, y = y, x self.forest[x] += self.forest[y] self.forest[y] = x def findRoot(self, x: int) -> int: if self.forest[x] < 0: return x else: self.forest[x] = self.findRoot(self.forest[x]) return self.forest[x] def issame(self, x: int, y: int) -> bool: return self.findRoot(x) == self.findRoot(y) def size(self, x: int) -> int: return -self.forest[self.findRoot(x)] n, m = map(int, input().split()) ab = [tuple(map(int, input().split())) for _ in range(m)] uf = UnionFind(n * 2) for a, b in ab: uf.union(a - 1, b - 1) groups = [] for i in range(n * 2): if i == uf.findRoot(i): groups.append(uf.size(i)) ans = 0 for g in groups: ans += g % 2 print(ans // 2)