結果
| 問題 | No.2418 情報通だよ!Nafmoくん | 
| コンテスト | |
| ユーザー |  shobonvip | 
| 提出日時 | 2023-08-12 13:38:01 | 
| 言語 | PyPy3 (7.3.15) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 230 ms / 2,000 ms | 
| コード長 | 661 bytes | 
| コンパイル時間 | 331 ms | 
| コンパイル使用メモリ | 82,172 KB | 
| 実行使用メモリ | 78,300 KB | 
| 最終ジャッジ日時 | 2024-11-14 12:20:28 | 
| 合計ジャッジ時間 | 4,357 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 21 | 
ソースコード
class UnionFind: def __init__(self, n): self.n = n self.parents = [-1] * n def find(self, x): if self.parents[x] < 0: return x else: self.parents[x] = self.find(self.parents[x]) return self.parents[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x == y: return if self.parents[x] > self.parents[y]: x, y = y, x self.parents[x] += self.parents[y] self.parents[y] = x n, m = map(int,input().split()) uf = UnionFind(2 * n) for i in range(m): a, b = map(int,input().split()) a-=1; b-=1 uf.union(a, b) ans = n for i in range(2*n): if uf.find(i) == i: siz = -uf.parents[i] ans -= siz // 2 print(ans)
