結果
問題 | No.2418 情報通だよ!Nafmoくん |
ユーザー | NakLon131 |
提出日時 | 2023-08-12 15:47:02 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 225 ms / 2,000 ms |
コード長 | 1,409 bytes |
コンパイル時間 | 210 ms |
コンパイル使用メモリ | 82,112 KB |
実行使用メモリ | 78,592 KB |
最終ジャッジ日時 | 2024-11-14 12:24:22 |
合計ジャッジ時間 | 4,316 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,760 KB |
testcase_01 | AC | 37 ms
54,052 KB |
testcase_02 | AC | 38 ms
52,132 KB |
testcase_03 | AC | 172 ms
78,380 KB |
testcase_04 | AC | 83 ms
78,012 KB |
testcase_05 | AC | 198 ms
77,104 KB |
testcase_06 | AC | 140 ms
77,836 KB |
testcase_07 | AC | 190 ms
76,912 KB |
testcase_08 | AC | 137 ms
78,112 KB |
testcase_09 | AC | 215 ms
77,920 KB |
testcase_10 | AC | 189 ms
78,380 KB |
testcase_11 | AC | 166 ms
77,816 KB |
testcase_12 | AC | 139 ms
77,748 KB |
testcase_13 | AC | 135 ms
77,436 KB |
testcase_14 | AC | 149 ms
77,472 KB |
testcase_15 | AC | 112 ms
76,092 KB |
testcase_16 | AC | 225 ms
78,592 KB |
testcase_17 | AC | 123 ms
76,600 KB |
testcase_18 | AC | 129 ms
77,728 KB |
testcase_19 | AC | 81 ms
77,436 KB |
testcase_20 | AC | 125 ms
76,236 KB |
testcase_21 | AC | 133 ms
77,124 KB |
testcase_22 | AC | 155 ms
76,860 KB |
testcase_23 | AC | 38 ms
52,612 KB |
ソースコード
class UnionFind: # 初期化(nは要素数) def __init__(self, n) -> None: # 全体の大きさ self.n = n # グループのサイズ(自身が根) self.root_sz = [-1] * n # 要素の根を返す def root(self, a) -> int: # aが根ならa自身を返す if self.root_sz[a] < 0: return a # aが根でない場合は、親を辿る self.root_sz[a] = self.root(self.root_sz[a]) return self.root_sz[a] # aとbを結合(サイズ更新) # ※マージ可否、マージ後の親を返すなど実装に応じて変える def merge(self, a, b) -> bool: # a,bの根を調べ、同じなら終了 a, b = self.root(a), self.root(b) if a == b: return False # グループのサイズ=要素数を比較 サイズの小さい方を大きい方につなげるため if(abs(self.root_sz[a]) < abs(self.root_sz[b])): a, b = b, a # サイズの更新 self.root_sz[a] += self.root_sz[b] self.root_sz[b] = a return True # 同じグループか判定 def same(self, a, b) -> bool: return (self.root(a) == self.root(b)) # 属するグループのサイズを返す def size(self, a) -> int: return abs(self.root_sz[self.root(a)]) n, m = map(int, input().split()) uf = UnionFind(2*n) for i in range(m): a, b = map(lambda x: int(x)-1, input().split()) uf.merge(a, b) ans = 0 for i in range(2*n): if i == uf.root(i): ans += uf.size(i) // 2 print(n - ans)