結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | Nikkuniku029 |
提出日時 | 2023-08-12 13:47:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 493 ms / 2,000 ms |
コード長 | 1,035 bytes |
コンパイル時間 | 102 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 15,104 KB |
最終ジャッジ日時 | 2024-11-14 12:21:41 |
合計ジャッジ時間 | 7,379 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 31 ms
10,752 KB |
testcase_01 | AC | 30 ms
10,752 KB |
testcase_02 | AC | 31 ms
10,752 KB |
testcase_03 | AC | 481 ms
15,104 KB |
testcase_04 | AC | 138 ms
13,312 KB |
testcase_05 | AC | 327 ms
12,544 KB |
testcase_06 | AC | 330 ms
14,464 KB |
testcase_07 | AC | 345 ms
12,288 KB |
testcase_08 | AC | 349 ms
15,104 KB |
testcase_09 | AC | 429 ms
12,928 KB |
testcase_10 | AC | 476 ms
14,720 KB |
testcase_11 | AC | 405 ms
14,336 KB |
testcase_12 | AC | 294 ms
13,696 KB |
testcase_13 | AC | 160 ms
11,904 KB |
testcase_14 | AC | 267 ms
12,800 KB |
testcase_15 | AC | 314 ms
10,880 KB |
testcase_16 | AC | 493 ms
13,696 KB |
testcase_17 | AC | 165 ms
11,008 KB |
testcase_18 | AC | 277 ms
13,824 KB |
testcase_19 | AC | 119 ms
13,056 KB |
testcase_20 | AC | 347 ms
10,880 KB |
testcase_21 | AC | 180 ms
12,288 KB |
testcase_22 | AC | 188 ms
11,392 KB |
testcase_23 | AC | 31 ms
10,752 KB |
ソースコード
class UnionFind: def __init__(self, n) -> None: self.par = [-1]*(n + 1) self.size = [1]*(n + 1) def root(self, x): if self.par[x] == -1: return x else: self.par[x] = self.root(self.par[x]) return self.par[x] def issame(self, x, y): return self.root(x) == self.root(y) def unite(self, x, y): x = self.root(x) y = self.root(y) # 既に同じグループなら何もしない if x == y: return False # unionbysize if self.size[x] < self.size[y]: x, y = y, x self.par[y] = x self.size[x] += self.size[y] return True def issize(self, x): return self.size[self.root(x)] N, M = map(int, input().split()) UF = UnionFind(2*N) for _ in range(M): a, b = map(int, input().split()) a -= 1 b -= 1 UF.unite(a, b) C = 0 for i in range(2*N): if i == UF.root(i): C += 1 if UF.issize(i) % 2 != 0 else 0 print(C//2)