結果

問題 No.1917 LCMST
ユーザー とりゐとりゐ
提出日時 2022-02-28 14:33:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,929 ms / 4,000 ms
コード長 1,194 bytes
コンパイル時間 176 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 319,084 KB
最終ジャッジ日時 2024-06-28 08:01:11
合計ジャッジ時間 42,467 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 40 ms
52,352 KB
testcase_02 AC 46 ms
59,008 KB
testcase_03 AC 92 ms
79,104 KB
testcase_04 AC 90 ms
76,288 KB
testcase_05 AC 93 ms
79,232 KB
testcase_06 AC 87 ms
76,928 KB
testcase_07 AC 83 ms
75,520 KB
testcase_08 AC 40 ms
52,352 KB
testcase_09 AC 1,658 ms
316,660 KB
testcase_10 AC 1,688 ms
316,652 KB
testcase_11 AC 1,620 ms
315,632 KB
testcase_12 AC 1,339 ms
299,988 KB
testcase_13 AC 578 ms
244,036 KB
testcase_14 AC 1,457 ms
303,176 KB
testcase_15 AC 470 ms
244,040 KB
testcase_16 AC 585 ms
244,160 KB
testcase_17 AC 748 ms
244,184 KB
testcase_18 AC 929 ms
249,044 KB
testcase_19 AC 523 ms
245,332 KB
testcase_20 AC 443 ms
244,164 KB
testcase_21 AC 551 ms
244,180 KB
testcase_22 AC 459 ms
244,544 KB
testcase_23 AC 440 ms
244,184 KB
testcase_24 AC 521 ms
245,328 KB
testcase_25 AC 450 ms
244,692 KB
testcase_26 AC 471 ms
245,316 KB
testcase_27 AC 489 ms
245,072 KB
testcase_28 AC 507 ms
245,072 KB
testcase_29 AC 1,883 ms
318,960 KB
testcase_30 AC 1,906 ms
318,824 KB
testcase_31 AC 1,898 ms
318,964 KB
testcase_32 AC 1,893 ms
319,084 KB
testcase_33 AC 1,915 ms
318,712 KB
testcase_34 AC 284 ms
224,340 KB
testcase_35 AC 279 ms
224,344 KB
testcase_36 AC 289 ms
225,092 KB
testcase_37 AC 1,869 ms
318,712 KB
testcase_38 AC 1,909 ms
318,700 KB
testcase_39 AC 1,929 ms
318,564 KB
testcase_40 AC 1,929 ms
318,576 KB
testcase_41 AC 1,876 ms
318,732 KB
testcase_42 AC 1,825 ms
318,852 KB
testcase_43 AC 318 ms
236,200 KB
testcase_44 AC 332 ms
236,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

n=int(input())
a=list(map(int,input().split()))
m=max(a)
d=[-1]*(m+1)
cnt=[0]*(m+1)

ans=0
for i in a:
  if cnt[i]==0:
    cnt[i]=1
  else:
    ans+=i

edge=[]
for i in range(1,m+1):
  for j in range(i,m+1,i):
    if cnt[j]==1:
      if d[i]==-1:
        d[i]=j
      else:
        edge.append((d[i]*j//i,d[i],j))

edge.sort(key=lambda x:x[0])
ans+=MST(m+1,edge)
print(ans)
0