結果

問題 No.1917 LCMST
ユーザー とりゐとりゐ
提出日時 2023-01-28 19:26:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,659 ms / 4,000 ms
コード長 953 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 320,168 KB
最終ジャッジ日時 2024-06-28 22:01:31
合計ジャッジ時間 38,572 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
66,048 KB
testcase_01 AC 55 ms
66,432 KB
testcase_02 AC 54 ms
66,176 KB
testcase_03 AC 87 ms
78,592 KB
testcase_04 AC 85 ms
78,616 KB
testcase_05 AC 94 ms
78,972 KB
testcase_06 AC 86 ms
78,616 KB
testcase_07 AC 77 ms
76,200 KB
testcase_08 AC 55 ms
65,792 KB
testcase_09 AC 1,429 ms
302,616 KB
testcase_10 AC 1,363 ms
304,560 KB
testcase_11 AC 1,321 ms
303,664 KB
testcase_12 AC 1,116 ms
299,552 KB
testcase_13 AC 488 ms
245,584 KB
testcase_14 AC 1,263 ms
302,448 KB
testcase_15 AC 405 ms
246,212 KB
testcase_16 AC 529 ms
246,416 KB
testcase_17 AC 664 ms
247,496 KB
testcase_18 AC 779 ms
247,876 KB
testcase_19 AC 426 ms
247,116 KB
testcase_20 AC 357 ms
246,844 KB
testcase_21 AC 448 ms
246,468 KB
testcase_22 AC 350 ms
246,204 KB
testcase_23 AC 341 ms
247,088 KB
testcase_24 AC 415 ms
246,760 KB
testcase_25 AC 344 ms
246,856 KB
testcase_26 AC 386 ms
246,420 KB
testcase_27 AC 384 ms
247,492 KB
testcase_28 AC 410 ms
247,304 KB
testcase_29 AC 1,604 ms
319,528 KB
testcase_30 AC 1,584 ms
318,524 KB
testcase_31 AC 1,571 ms
318,404 KB
testcase_32 AC 1,623 ms
318,744 KB
testcase_33 AC 1,551 ms
319,080 KB
testcase_34 AC 223 ms
229,656 KB
testcase_35 AC 223 ms
230,004 KB
testcase_36 AC 230 ms
229,400 KB
testcase_37 AC 1,617 ms
319,380 KB
testcase_38 AC 1,559 ms
320,168 KB
testcase_39 AC 1,594 ms
319,384 KB
testcase_40 AC 1,659 ms
319,200 KB
testcase_41 AC 1,639 ms
318,756 KB
testcase_42 AC 1,517 ms
319,012 KB
testcase_43 AC 246 ms
241,712 KB
testcase_44 AC 249 ms
242,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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)

n=int(input())
a=list(map(int,input().split()))
m=10**5+1
cnt=[0]*m
ans=0
for i in a:
  if cnt[i]==0:
    cnt[i]=1
  else:
    ans+=i

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

edge.sort(key=lambda x:x[0])
uf=UnionFind(m+1)
for c,x,y in edge:
  if not uf.same(x,y):
    ans+=c
    uf.union(x,y)

print(ans)
0