結果

問題 No.14 最小公倍数ソート
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-28 18:43:48
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 289 ms / 5,000 ms
コード長 912 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-05-06 22:49:24
合計ジャッジ時間 4,950 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 32 ms
11,008 KB
testcase_02 AC 28 ms
10,880 KB
testcase_03 AC 51 ms
12,288 KB
testcase_04 AC 289 ms
21,760 KB
testcase_05 AC 169 ms
17,152 KB
testcase_06 AC 180 ms
17,408 KB
testcase_07 AC 204 ms
18,688 KB
testcase_08 AC 239 ms
19,712 KB
testcase_09 AC 271 ms
21,248 KB
testcase_10 AC 268 ms
20,992 KB
testcase_11 AC 281 ms
21,376 KB
testcase_12 AC 271 ms
21,620 KB
testcase_13 AC 285 ms
21,632 KB
testcase_14 AC 280 ms
21,248 KB
testcase_15 AC 289 ms
21,632 KB
testcase_16 AC 173 ms
17,792 KB
testcase_17 AC 147 ms
16,640 KB
testcase_18 AC 106 ms
14,976 KB
testcase_19 AC 232 ms
19,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
import heapq
from math import gcd


def getdiv(n):
    res = set()
    for i in range(1, int(n ** 0.5) + 1):
        if n % i == 0:
            res.add(i)
            res.add(n // i)
    return tuple(sorted(res))


N = int(input())
A = list(map(int, input().split()))
div = [getdiv(a) for a in A]

d = defaultdict(list)
for i, a in enumerate(A):
    for x in div[i]:
        heapq.heappush(d[x], (a, i))

seen = [0] * N
seen[0] = 1
ans = [0]

a = A[0]
now = 0
for _ in range(N - 1):
    min_val = 10 ** 18
    min_x = -1
    for x in div[now]:
        while d[x] and seen[d[x][0][1]]:
            heapq.heappop(d[x])
        if not d[x]:
            continue
        tmp_val = d[x][0][0]//x
        if tmp_val < min_val:
            min_val = tmp_val
            min_x = x
    a, now = heapq.heappop(d[min_x])
    ans.append(now)
    seen[now] = 1

print(*[A[i] for i in ans])
0