結果

問題 No.14 最小公倍数ソート
ユーザー vwxyzvwxyz
提出日時 2021-06-30 09:02:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 528 ms / 5,000 ms
コード長 1,768 bytes
コンパイル時間 529 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-06-26 11:03:22
合計ジャッジ時間 7,790 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
12,032 KB
testcase_01 AC 42 ms
12,032 KB
testcase_02 AC 42 ms
12,160 KB
testcase_03 AC 84 ms
13,312 KB
testcase_04 AC 528 ms
20,864 KB
testcase_05 AC 280 ms
17,152 KB
testcase_06 AC 301 ms
17,536 KB
testcase_07 AC 344 ms
18,560 KB
testcase_08 AC 399 ms
19,312 KB
testcase_09 AC 482 ms
20,480 KB
testcase_10 AC 465 ms
20,224 KB
testcase_11 AC 487 ms
20,608 KB
testcase_12 AC 508 ms
20,608 KB
testcase_13 AC 493 ms
20,608 KB
testcase_14 AC 482 ms
20,608 KB
testcase_15 AC 483 ms
20,736 KB
testcase_16 AC 305 ms
17,780 KB
testcase_17 AC 258 ms
17,024 KB
testcase_18 AC 184 ms
15,360 KB
testcase_19 AC 393 ms
19,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
from collections import Counter, deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

def Divisors(N):
    divisors=[]
    for i in range(1,N+1):
        if i**2>=N:
            break
        elif N%i==0:
            divisors.append(i)
    if i**2==N:
        divisors+=[i]+[N//i for i in divisors[::-1]]
    else:
        divisors+=[N//i for i in divisors[::-1]]
    return divisors

def LCM(n,m):
    if n or m:
        return abs(n)*abs(m)//math.gcd(n,m)
    return 0

N=int(readline())
A=list(map(int,readline().split()))
dct=defaultdict(list)
for i,a in enumerate(A):
    for d in Divisors(a):
        dct[d].append((a,i))
for d in dct.keys():
    heapify(dct[d])
used=[False]*N
ans_lst=[0]
used[0]=True
a=A[0]
for _ in range(N-1):
    m=(float('inf'),)
    m_i=None
    for d in Divisors(a):
        if not dct[d]:
            continue
        aa,i=dct[d][0]
        while used[i]:
            heappop(dct[d])
            if not dct[d]:
                break
            aa,i=dct[d][0]
        else:
            if m>(LCM(a,aa),aa):
                m=(LCM(a,aa),aa)
                m_i=i
    ans_lst.append(m_i)
    used[m_i]=True
    a=A[m_i]
ans_lst=[A[i] for i in ans_lst]
print(*ans_lst)
0