結果
問題 | No.1917 LCMST |
ユーザー | とりゐ |
提出日時 | 2022-02-28 13:42:14 |
言語 | PyPy3 (7.3.15) |
結果 |
MLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 1,047 bytes |
コンパイル時間 | 168 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 851,968 KB |
最終ジャッジ日時 | 2024-06-28 07:57:58 |
合計ジャッジ時間 | 16,017 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 40 ms
52,096 KB |
testcase_01 | AC | 41 ms
52,096 KB |
testcase_02 | AC | 41 ms
52,352 KB |
testcase_03 | AC | 1,208 ms
154,144 KB |
testcase_04 | AC | 1,236 ms
154,296 KB |
testcase_05 | AC | 1,211 ms
154,040 KB |
testcase_06 | AC | 1,186 ms
154,292 KB |
testcase_07 | AC | 1,197 ms
154,160 KB |
testcase_08 | AC | 38 ms
52,352 KB |
testcase_09 | MLE | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
ソースコード
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 def size(self, x): return -self.parents[self.find(x)] def same(self, x, y): return self.find(x) == self.find(y) def MST(n,edge): uf=UnionFind(n) ans=0 for cost,u,v in edge: if not uf.same(u,v): ans+=cost uf.union(u,v) return ans import math n=int(input()) a=list(map(int,input().split())) edge=[] for i in range(n): for j in range(i+1,n): lcm=a[i]*a[j]//math.gcd(a[i],a[j]) edge.append((lcm,i,j)) edge.sort(key=lambda x:x[0]) print(MST(n,edge))