結果

問題 No.1917 LCMST
ユーザー とりゐとりゐ
提出日時 2022-04-28 18:10:33
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,320 ms / 4,000 ms
コード長 1,193 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 305,768 KB
最終ジャッジ日時 2024-06-28 07:58:42
合計ジャッジ時間 30,235 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
66,176 KB
testcase_01 AC 56 ms
66,816 KB
testcase_02 AC 57 ms
66,176 KB
testcase_03 AC 91 ms
80,000 KB
testcase_04 AC 88 ms
79,872 KB
testcase_05 AC 98 ms
80,128 KB
testcase_06 AC 96 ms
80,256 KB
testcase_07 AC 90 ms
80,128 KB
testcase_08 AC 56 ms
66,944 KB
testcase_09 AC 1,164 ms
284,684 KB
testcase_10 AC 1,131 ms
277,624 KB
testcase_11 AC 1,320 ms
305,768 KB
testcase_12 AC 1,160 ms
285,864 KB
testcase_13 AC 678 ms
248,324 KB
testcase_14 AC 1,150 ms
287,544 KB
testcase_15 AC 517 ms
246,292 KB
testcase_16 AC 674 ms
248,344 KB
testcase_17 AC 867 ms
263,088 KB
testcase_18 AC 922 ms
264,752 KB
testcase_19 AC 534 ms
246,424 KB
testcase_20 AC 448 ms
246,288 KB
testcase_21 AC 549 ms
245,656 KB
testcase_22 AC 453 ms
246,424 KB
testcase_23 AC 454 ms
247,060 KB
testcase_24 AC 547 ms
246,540 KB
testcase_25 AC 459 ms
246,384 KB
testcase_26 AC 496 ms
247,320 KB
testcase_27 AC 510 ms
246,168 KB
testcase_28 AC 533 ms
245,272 KB
testcase_29 AC 823 ms
250,804 KB
testcase_30 AC 820 ms
250,676 KB
testcase_31 AC 823 ms
250,544 KB
testcase_32 AC 831 ms
250,420 KB
testcase_33 AC 823 ms
250,492 KB
testcase_34 AC 282 ms
229,012 KB
testcase_35 AC 281 ms
228,884 KB
testcase_36 AC 282 ms
229,144 KB
testcase_37 AC 866 ms
250,556 KB
testcase_38 AC 925 ms
250,808 KB
testcase_39 AC 881 ms
250,552 KB
testcase_40 AC 940 ms
250,296 KB
testcase_41 AC 924 ms
250,292 KB
testcase_42 AC 969 ms
250,696 KB
testcase_43 AC 322 ms
241,684 KB
testcase_44 AC 343 ms
242,448 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#UnionFind
from collections import defaultdict

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 same(self, x, y):
        return self.find(x) == self.find(y)

from collections import defaultdict
n=int(input())
a=list(map(int,input().split()))
m=10**5
c=[0]*(m+1)
ans=0

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

s=set()
edge=defaultdict(list)
d=[-1]*(m+1)

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

s=sorted(list(s))
uf=UnionFind(m+1)

for w in s:
  for u,v in edge[w]:
    if not uf.same(u,v):
      uf.union(u,v)
      ans+=w

print(ans)
0