結果

問題 No.14 最小公倍数ソート
ユーザー square1001square1001
提出日時 2022-02-17 13:07:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 114 ms / 5,000 ms
コード長 883 bytes
コンパイル時間 197 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 79,140 KB
最終ジャッジ日時 2024-06-29 07:38:42
合計ジャッジ時間 2,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
51,712 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 80 ms
72,192 KB
testcase_04 AC 109 ms
79,104 KB
testcase_05 AC 100 ms
77,568 KB
testcase_06 AC 102 ms
78,400 KB
testcase_07 AC 105 ms
78,208 KB
testcase_08 AC 105 ms
78,980 KB
testcase_09 AC 105 ms
78,720 KB
testcase_10 AC 105 ms
78,848 KB
testcase_11 AC 108 ms
78,848 KB
testcase_12 AC 110 ms
78,664 KB
testcase_13 AC 107 ms
78,776 KB
testcase_14 AC 111 ms
78,556 KB
testcase_15 AC 114 ms
78,848 KB
testcase_16 AC 106 ms
78,720 KB
testcase_17 AC 104 ms
79,140 KB
testcase_18 AC 103 ms
78,720 KB
testcase_19 AC 106 ms
78,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# Time Complexity: O((N + A) log A)

# Input
N = int(input())
A = list(map(int, input().split()))

# Pre-calculation
LIMIT = max(A)
cnt = [ 0 ] * (LIMIT + 1)
for x in A[1:]:
	cnt[x] += 1
vals = list(filter(lambda x: cnt[x] != 0, range(1, LIMIT + 1)))
divs = [ list() for i in range(LIMIT + 1) ]
for i in range(1, LIMIT + 1):
	for j in range(i, LIMIT + 1, i):
		divs[j].append(i)

# Calculation
used = [ True ] * (LIMIT + 1)
divpos = [ 0 ] * (LIMIT + 1)
preval = A[0]
result = [ A[0] ]
for x in vals:
	used[x] = False
for i in range(len(vals)):
	optval, optlcm = -1, 10 ** 18
	for j in divs[preval]:
		while divpos[j] <= LIMIT and used[divpos[j]]:
			divpos[j] += j
		if divpos[j] <= LIMIT and optlcm > preval * divpos[j] // j:
			optval = divpos[j]
			optlcm = preval * divpos[j] // j
	result += [ optval ] * cnt[optval]
	used[optval] = True
	preval = optval

# Output
print(*result)
0