結果

問題 No.14 最小公倍数ソート
ユーザー tktk_snsntktk_snsn
提出日時 2021-03-28 18:43:48
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 294 ms / 5,000 ms
コード長 912 bytes
コンパイル時間 327 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 21,760 KB
最終ジャッジ日時 2024-11-29 09:19:10
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
11,136 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 27 ms
11,008 KB
testcase_03 AC 50 ms
12,288 KB
testcase_04 AC 294 ms
21,760 KB
testcase_05 AC 164 ms
17,152 KB
testcase_06 AC 181 ms
17,536 KB
testcase_07 AC 209 ms
18,816 KB
testcase_08 AC 236 ms
19,968 KB
testcase_09 AC 272 ms
21,376 KB
testcase_10 AC 264 ms
21,248 KB
testcase_11 AC 286 ms
21,632 KB
testcase_12 AC 278 ms
21,496 KB
testcase_13 AC 288 ms
21,504 KB
testcase_14 AC 290 ms
21,632 KB
testcase_15 AC 293 ms
21,632 KB
testcase_16 AC 177 ms
17,920 KB
testcase_17 AC 152 ms
16,640 KB
testcase_18 AC 109 ms
14,720 KB
testcase_19 AC 239 ms
19,584 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