結果
問題 | No.1166 NADA DNA |
ユーザー | Mitarushi |
提出日時 | 2020-08-11 15:40:09 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 1,417 ms / 3,000 ms |
コード長 | 1,181 bytes |
コンパイル時間 | 279 ms |
コンパイル使用メモリ | 82,608 KB |
実行使用メモリ | 161,524 KB |
最終ジャッジ日時 | 2024-10-09 11:29:32 |
合計ジャッジ時間 | 23,360 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,224 KB |
testcase_01 | AC | 40 ms
52,480 KB |
testcase_02 | AC | 68 ms
76,160 KB |
testcase_03 | AC | 403 ms
95,232 KB |
testcase_04 | AC | 1,339 ms
160,512 KB |
testcase_05 | AC | 1,336 ms
160,896 KB |
testcase_06 | AC | 1,353 ms
160,896 KB |
testcase_07 | AC | 1,333 ms
160,852 KB |
testcase_08 | AC | 1,318 ms
160,768 KB |
testcase_09 | AC | 1,330 ms
161,428 KB |
testcase_10 | AC | 1,328 ms
160,676 KB |
testcase_11 | AC | 1,349 ms
161,348 KB |
testcase_12 | AC | 1,318 ms
161,460 KB |
testcase_13 | AC | 1,330 ms
160,908 KB |
testcase_14 | AC | 1,417 ms
161,372 KB |
testcase_15 | AC | 1,323 ms
161,024 KB |
testcase_16 | AC | 1,324 ms
160,332 KB |
testcase_17 | AC | 1,325 ms
161,448 KB |
testcase_18 | AC | 1,346 ms
161,524 KB |
testcase_19 | AC | 1,335 ms
160,788 KB |
testcase_20 | AC | 40 ms
52,224 KB |
testcase_21 | AC | 38 ms
52,352 KB |
ソースコード
n, l = [int(i) for i in input().split()] g = [input() for _ in range(n)] def distant(a, b): c = 0 for i, j in zip(a, b): c += i != j return c class UnionFind: def __init__(self, n): self.parent = [-1] * n self.rank = [1] * n def get_root(self, i): while self.parent[i] != -1: i = self.parent[i] return i def is_same_tree(self, i, j): return self.get_root(i) == self.get_root(j) def merge(self, i, j): i = self.get_root(i) j = self.get_root(j) if i == j: return if self.rank[i] > self.rank[j]: self.parent[j] = i self.rank[i] = max(self.rank[i], self.rank[j] + 1) else: self.parent[i] = j self.rank[j] = max(self.rank[j], self.rank[i] + 1) uf = UnionFind(n) cost_vec = [(distant(g[i], g[j]), i, j) for i in range(n) for j in range(i + 1, n)] cost_vec.sort() cost = 0 index = 0 for _ in range(n - 1): while True: c, i, j = cost_vec[index] index += 1 if not uf.is_same_tree(i, j): break cost += c uf.merge(i, j) print(cost)