結果

問題 No.1917 LCMST
ユーザー とりゐとりゐ
提出日時 2023-01-28 19:42:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,349 ms / 4,000 ms
コード長 1,583 bytes
コンパイル時間 161 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 450,396 KB
最終ジャッジ日時 2024-06-28 22:09:37
合計ジャッジ時間 49,190 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
66,048 KB
testcase_01 AC 49 ms
66,304 KB
testcase_02 AC 50 ms
65,792 KB
testcase_03 AC 128 ms
80,512 KB
testcase_04 AC 127 ms
79,848 KB
testcase_05 AC 130 ms
80,256 KB
testcase_06 AC 136 ms
80,768 KB
testcase_07 AC 124 ms
80,008 KB
testcase_08 AC 47 ms
66,048 KB
testcase_09 AC 2,113 ms
450,396 KB
testcase_10 AC 2,061 ms
368,524 KB
testcase_11 AC 2,028 ms
370,964 KB
testcase_12 AC 1,839 ms
396,880 KB
testcase_13 AC 795 ms
259,240 KB
testcase_14 AC 1,924 ms
325,692 KB
testcase_15 AC 503 ms
245,208 KB
testcase_16 AC 797 ms
257,952 KB
testcase_17 AC 1,093 ms
276,232 KB
testcase_18 AC 1,254 ms
267,832 KB
testcase_19 AC 571 ms
246,656 KB
testcase_20 AC 426 ms
245,880 KB
testcase_21 AC 569 ms
245,244 KB
testcase_22 AC 491 ms
246,524 KB
testcase_23 AC 477 ms
246,520 KB
testcase_24 AC 555 ms
246,028 KB
testcase_25 AC 438 ms
246,524 KB
testcase_26 AC 470 ms
245,360 KB
testcase_27 AC 541 ms
246,160 KB
testcase_28 AC 497 ms
246,008 KB
testcase_29 AC 2,216 ms
379,524 KB
testcase_30 AC 2,237 ms
379,440 KB
testcase_31 AC 2,197 ms
378,600 KB
testcase_32 AC 2,261 ms
378,292 KB
testcase_33 AC 2,171 ms
379,704 KB
testcase_34 AC 213 ms
228,220 KB
testcase_35 AC 210 ms
228,600 KB
testcase_36 AC 215 ms
228,732 KB
testcase_37 AC 2,258 ms
380,604 KB
testcase_38 AC 2,229 ms
379,636 KB
testcase_39 AC 2,239 ms
378,804 KB
testcase_40 AC 2,349 ms
377,404 KB
testcase_41 AC 2,224 ms
376,264 KB
testcase_42 AC 2,142 ms
382,620 KB
testcase_43 AC 306 ms
240,760 KB
testcase_44 AC 283 ms
241,652 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)

def compare(a,b):
  # 比較関数 (a<=b)
  return a[0]<=b[0]


def merge(l, r):
    new = []
    ln = 0
    rn = 0
    while ln < len(l) and rn < len(r):
        if compare(l[ln],r[rn]):
            new.append(l[ln])
            ln += 1
        else:
            new.append(r[rn])
            rn += 1
    for i in range(ln, len(l)):
        new.append(l[i])
    for i in range(rn, len(r)):
        new.append(r[i])
    return new
 
def MergeSort(l):
    if len(l) == 0:
        return []
    if len(l) == 1:
        return l
    else:
        a = l[:len(l)//2]
        b = l[len(l)//2:]
        return merge(MergeSort(a), MergeSort(b))

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=MergeSort(edge)
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