結果

問題 No.14 最小公倍数ソート
ユーザー tnodinotnodino
提出日時 2022-03-06 01:01:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 523 ms / 5,000 ms
コード長 984 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 87,348 KB
最終ジャッジ日時 2024-07-20 08:31:53
合計ジャッジ時間 9,266 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
59,256 KB
testcase_01 AC 44 ms
58,868 KB
testcase_02 AC 46 ms
59,048 KB
testcase_03 AC 196 ms
78,876 KB
testcase_04 AC 461 ms
86,976 KB
testcase_05 AC 437 ms
84,168 KB
testcase_06 AC 418 ms
84,088 KB
testcase_07 AC 406 ms
84,896 KB
testcase_08 AC 446 ms
85,848 KB
testcase_09 AC 451 ms
86,348 KB
testcase_10 AC 471 ms
87,100 KB
testcase_11 AC 523 ms
86,744 KB
testcase_12 AC 490 ms
86,556 KB
testcase_13 AC 491 ms
87,248 KB
testcase_14 AC 488 ms
86,916 KB
testcase_15 AC 482 ms
87,348 KB
testcase_16 AC 406 ms
85,004 KB
testcase_17 AC 404 ms
84,172 KB
testcase_18 AC 303 ms
81,784 KB
testcase_19 AC 459 ms
86,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from math import sqrt, gcd
from heapq import heappop, heappush
def Divisor(N):
    ret = []
    for i in range(1,int(sqrt(N))+1):
        if N % i == 0:
            ret.append(i)
            if N // i != i:
                ret.append(N//i)
    ret.sort()
    return ret

M = 20000
N = int(input())
a = list(map(int,input().split()))
D = []
H = [[] for _ in range(M+1)]
for i in range(N):
    D.append(Divisor(a[i]))
    for k in D[i]:
        heappush(H[k], (a[i], i))
flg = [True] * N
flg[0] = False
ans = [a[0]]
idx = 0
for _ in range(N-1):
    lcm = 1<<32
    nxt = idx
    ret = []
    for k in D[idx]:
        while H[k]:
            A,P = heappop(H[k])
            if flg[P]:
                heappush(H[k], (A, P))
                break
        if not H[k]:
            continue
        L = A * a[idx] // gcd(A, a[idx])
        if L < lcm or (L == lcm and A < a[nxt]):
            lcm = L
            nxt = P
    flg[nxt] = False
    ans.append(a[nxt])
    idx = nxt
print(*ans)
0