結果
問題 | No.1917 LCMST |
ユーザー | AEn |
提出日時 | 2023-04-08 11:09:30 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 3,585 ms / 4,000 ms |
コード長 | 2,825 bytes |
コンパイル時間 | 305 ms |
コンパイル使用メモリ | 82,300 KB |
実行使用メモリ | 305,100 KB |
最終ジャッジ日時 | 2024-10-03 06:38:03 |
合計ジャッジ時間 | 73,880 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 94 ms
83,092 KB |
testcase_01 | AC | 95 ms
82,944 KB |
testcase_02 | AC | 93 ms
82,944 KB |
testcase_03 | AC | 145 ms
83,968 KB |
testcase_04 | AC | 141 ms
84,008 KB |
testcase_05 | AC | 143 ms
84,224 KB |
testcase_06 | AC | 137 ms
83,948 KB |
testcase_07 | AC | 144 ms
84,436 KB |
testcase_08 | AC | 93 ms
82,816 KB |
testcase_09 | AC | 3,292 ms
290,820 KB |
testcase_10 | AC | 3,235 ms
290,780 KB |
testcase_11 | AC | 3,235 ms
303,348 KB |
testcase_12 | AC | 2,669 ms
283,252 KB |
testcase_13 | AC | 1,093 ms
256,680 KB |
testcase_14 | AC | 2,860 ms
289,636 KB |
testcase_15 | AC | 776 ms
256,804 KB |
testcase_16 | AC | 1,105 ms
256,652 KB |
testcase_17 | AC | 1,546 ms
257,068 KB |
testcase_18 | AC | 1,833 ms
256,720 KB |
testcase_19 | AC | 895 ms
256,716 KB |
testcase_20 | AC | 729 ms
256,996 KB |
testcase_21 | AC | 962 ms
257,000 KB |
testcase_22 | AC | 734 ms
256,824 KB |
testcase_23 | AC | 743 ms
257,008 KB |
testcase_24 | AC | 927 ms
256,720 KB |
testcase_25 | AC | 725 ms
256,736 KB |
testcase_26 | AC | 833 ms
257,028 KB |
testcase_27 | AC | 843 ms
257,316 KB |
testcase_28 | AC | 873 ms
257,008 KB |
testcase_29 | AC | 3,399 ms
304,884 KB |
testcase_30 | AC | 3,363 ms
305,024 KB |
testcase_31 | AC | 3,305 ms
304,668 KB |
testcase_32 | AC | 3,269 ms
304,856 KB |
testcase_33 | AC | 3,585 ms
304,372 KB |
testcase_34 | AC | 334 ms
256,884 KB |
testcase_35 | AC | 334 ms
256,780 KB |
testcase_36 | AC | 347 ms
257,188 KB |
testcase_37 | AC | 3,434 ms
304,764 KB |
testcase_38 | AC | 3,522 ms
304,620 KB |
testcase_39 | AC | 3,480 ms
305,100 KB |
testcase_40 | AC | 3,305 ms
304,252 KB |
testcase_41 | AC | 3,348 ms
304,700 KB |
testcase_42 | AC | 3,334 ms
304,804 KB |
testcase_43 | AC | 400 ms
256,988 KB |
testcase_44 | AC | 392 ms
256,596 KB |
ソースコード
from typing import List class UnionFind: """0-indexed""" def __init__(self, n): self.n = n self.parent = [-1] * n self.__group_count = n def unite(self, x, y) -> bool: """xとyをマージ""" x = self.root(x) y = self.root(y) if x == y: return False self.__group_count -= 1 if self.parent[x] > self.parent[y]: x, y = y, x self.parent[x] += self.parent[y] self.parent[y] = x return True def is_same(self, x, y) -> bool: """xとyが同じ連結成分か判定""" return self.root(x) == self.root(y) def root(self, x) -> int: """xの根を取得""" if self.parent[x] < 0: return x else: # 経路圧縮あり # self.parent[x] = self.root(self.parent[x]) # return self.parent[x] # 経路圧縮なし return self.root(self.parent[x]) def size(self, x) -> int: """xが属する連結成分のサイズを取得""" return -self.parent[self.root(x)] def all_sizes(self) -> List[int]: """全連結成分のサイズのリストを取得 O(N)""" sizes = [] for i in range(self.n): size = self.parent[i] if size < 0: sizes.append(-size) return sizes def members(self, x) -> List[int]: """xが属するグループのリストを返す O(N)""" mem = [] r = self.root(x) for i in range(self.n): if self.root(i) == r: mem.append(i) return mem def groups(self) -> List[List[int]]: """全連結成分の内容のリストを取得 O(N・α(N))""" groups = dict() for i in range(self.n): p = self.root(i) if not groups.get(p): groups[p] = [] groups[p].append(i) return list(groups.values()) @property def group_count(self) -> int: """連結成分の数を取得 O(1)""" return self.__group_count N = int(input()) A = list(map(int, input().split())) num = [0]*(10**5+1) id = [list() for _ in range(10**5+1)] for i,a in enumerate(A): num[a] += 1 id[a].append(i) res = 0 l = 0 uf = UnionFind(N) for i in range(10**5+1): if num[i]: for j in range(num[i]-1): uf.unite(id[i][j],id[i][j+1]) res += i edge = [] for i in range(1,10**5+1): m = float('inf') for j in range(i,10**5+1,i): if num[j]: if m==float('inf'): m = j//i else: edge.append([m*j,id[m*i][0],id[j][0]]) edge.sort() for c,a,b in edge: f = uf.unite(a,b) if f: res += c # print(uf.group_count) print(res)