結果

問題 No.14 最小公倍数ソート
ユーザー szkhtsszkhts
提出日時 2022-08-14 07:43:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 437 ms / 5,000 ms
コード長 987 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-09-25 09:17:23
合計ジャッジ時間 6,863 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
12,288 KB
testcase_01 AC 38 ms
12,416 KB
testcase_02 AC 37 ms
12,416 KB
testcase_03 AC 66 ms
13,440 KB
testcase_04 AC 435 ms
22,656 KB
testcase_05 AC 250 ms
18,176 KB
testcase_06 AC 270 ms
18,688 KB
testcase_07 AC 315 ms
19,968 KB
testcase_08 AC 363 ms
20,992 KB
testcase_09 AC 418 ms
22,144 KB
testcase_10 AC 408 ms
22,144 KB
testcase_11 AC 430 ms
22,784 KB
testcase_12 AC 433 ms
22,400 KB
testcase_13 AC 431 ms
22,528 KB
testcase_14 AC 426 ms
22,400 KB
testcase_15 AC 437 ms
22,656 KB
testcase_16 AC 266 ms
18,688 KB
testcase_17 AC 220 ms
17,664 KB
testcase_18 AC 153 ms
16,000 KB
testcase_19 AC 345 ms
20,608 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