結果

問題 No.1917 LCMST
ユーザー とりゐとりゐ
提出日時 2022-02-28 14:05:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,992 ms / 4,000 ms
コード長 868 bytes
コンパイル時間 416 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 273,136 KB
最終ジャッジ日時 2024-06-28 08:02:14
合計ジャッジ時間 61,115 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 61 ms
65,664 KB
testcase_01 AC 61 ms
65,664 KB
testcase_02 AC 61 ms
65,536 KB
testcase_03 AC 139 ms
80,256 KB
testcase_04 AC 131 ms
79,488 KB
testcase_05 AC 139 ms
79,872 KB
testcase_06 AC 147 ms
79,904 KB
testcase_07 AC 125 ms
79,616 KB
testcase_08 AC 61 ms
66,176 KB
testcase_09 AC 2,534 ms
267,488 KB
testcase_10 AC 2,540 ms
267,864 KB
testcase_11 AC 2,542 ms
265,460 KB
testcase_12 AC 2,168 ms
263,392 KB
testcase_13 AC 891 ms
241,556 KB
testcase_14 AC 2,342 ms
266,804 KB
testcase_15 AC 630 ms
239,384 KB
testcase_16 AC 960 ms
241,168 KB
testcase_17 AC 1,313 ms
241,428 KB
testcase_18 AC 1,639 ms
241,296 KB
testcase_19 AC 623 ms
240,400 KB
testcase_20 AC 528 ms
238,480 KB
testcase_21 AC 657 ms
239,504 KB
testcase_22 AC 541 ms
237,948 KB
testcase_23 AC 522 ms
238,232 KB
testcase_24 AC 649 ms
239,124 KB
testcase_25 AC 551 ms
238,348 KB
testcase_26 AC 570 ms
238,224 KB
testcase_27 AC 586 ms
238,868 KB
testcase_28 AC 617 ms
239,632 KB
testcase_29 AC 2,746 ms
272,100 KB
testcase_30 AC 2,795 ms
271,924 KB
testcase_31 AC 2,758 ms
272,172 KB
testcase_32 AC 2,775 ms
271,800 KB
testcase_33 AC 2,765 ms
271,660 KB
testcase_34 AC 282 ms
225,168 KB
testcase_35 AC 282 ms
225,424 KB
testcase_36 AC 282 ms
225,808 KB
testcase_37 AC 2,935 ms
271,976 KB
testcase_38 AC 2,992 ms
267,816 KB
testcase_39 AC 2,954 ms
273,136 KB
testcase_40 AC 2,903 ms
266,680 KB
testcase_41 AC 2,983 ms
269,560 KB
testcase_42 AC 2,932 ms
270,732 KB
testcase_43 AC 357 ms
236,692 KB
testcase_44 AC 364 ms
237,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify
def MST(n,edge):
  used=[0]*n
  todo=edge[0].copy()
  used[0]=1
  heapify(todo)
  ans=0
  while todo:
    cost,v=heappop(todo)
    if used[v]:
      continue
    used[v] = 1
    ans+=cost
    for c,w in edge[v]:
      if used[w]:
          continue
      heappush(todo,(c,w))
  return ans

n=int(input())
a=list(map(int,input().split()))
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


id=[-1]*(m+1)
size=0
for i in range(m+1):
  if cnt[i]:
    id[i]=size
    size+=1
edge=[[] for i in range(size)]
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:
        id1=id[j]
        id2=id[d[i]]
        edge[id1].append((d[i]*j//i,id2))
        edge[id2].append((d[i]*j//i,id1))

ans+=MST(size,edge)
print(ans)
0