結果

問題 No.1917 LCMST
ユーザー とりゐとりゐ
提出日時 2022-02-28 13:40:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,999 ms / 4,000 ms
コード長 1,281 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 319,684 KB
最終ジャッジ日時 2024-06-28 07:59:34
合計ジャッジ時間 43,251 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
66,816 KB
testcase_01 AC 56 ms
68,164 KB
testcase_02 AC 56 ms
67,420 KB
testcase_03 AC 86 ms
80,120 KB
testcase_04 AC 84 ms
79,776 KB
testcase_05 AC 93 ms
80,256 KB
testcase_06 AC 91 ms
79,872 KB
testcase_07 AC 79 ms
76,876 KB
testcase_08 AC 57 ms
67,072 KB
testcase_09 AC 1,669 ms
304,580 KB
testcase_10 AC 1,703 ms
304,288 KB
testcase_11 AC 1,626 ms
304,560 KB
testcase_12 AC 1,375 ms
299,456 KB
testcase_13 AC 551 ms
247,332 KB
testcase_14 AC 1,476 ms
303,008 KB
testcase_15 AC 466 ms
247,456 KB
testcase_16 AC 552 ms
247,328 KB
testcase_17 AC 713 ms
247,448 KB
testcase_18 AC 910 ms
248,252 KB
testcase_19 AC 485 ms
248,620 KB
testcase_20 AC 403 ms
248,196 KB
testcase_21 AC 509 ms
247,724 KB
testcase_22 AC 415 ms
248,100 KB
testcase_23 AC 400 ms
248,488 KB
testcase_24 AC 492 ms
248,356 KB
testcase_25 AC 414 ms
248,228 KB
testcase_26 AC 443 ms
248,108 KB
testcase_27 AC 454 ms
248,492 KB
testcase_28 AC 471 ms
248,360 KB
testcase_29 AC 1,958 ms
319,396 KB
testcase_30 AC 1,982 ms
319,416 KB
testcase_31 AC 1,970 ms
319,424 KB
testcase_32 AC 1,992 ms
319,300 KB
testcase_33 AC 1,964 ms
319,164 KB
testcase_34 AC 241 ms
229,536 KB
testcase_35 AC 244 ms
229,800 KB
testcase_36 AC 242 ms
229,920 KB
testcase_37 AC 1,966 ms
319,684 KB
testcase_38 AC 1,999 ms
319,676 KB
testcase_39 AC 1,932 ms
319,292 KB
testcase_40 AC 1,954 ms
319,092 KB
testcase_41 AC 1,951 ms
319,548 KB
testcase_42 AC 1,878 ms
319,684 KB
testcase_43 AC 276 ms
241,396 KB
testcase_44 AC 281 ms
242,592 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

import math
import random
n=int(input())
a=list(map(int,input().split()))
#n=5*10**5
#a=[random.randint(50000,10**5) for i in range(n)]
m=10**5
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