結果

問題 No.1611 Minimum Multiple with Double Divisors
ユーザー shotoyooshotoyoo
提出日時 2021-07-21 22:44:02
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 2,441 bytes
コンパイル時間 378 ms
コンパイル使用メモリ 87,012 KB
実行使用メモリ 123,872 KB
最終ジャッジ日時 2023-09-24 19:02:10
合計ジャッジ時間 54,846 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 TLE -
testcase_02 TLE -
testcase_03 TLE -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 WA -
testcase_11 WA -
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 212 ms
103,148 KB
testcase_29 AC 210 ms
103,216 KB
testcase_30 AC 214 ms
103,344 KB
testcase_31 AC 215 ms
103,400 KB
testcase_32 AC 214 ms
103,376 KB
testcase_33 AC 213 ms
103,168 KB
testcase_34 AC 218 ms
103,580 KB
testcase_35 WA -
testcase_36 AC 219 ms
103,480 KB
testcase_37 AC 222 ms
103,472 KB
testcase_38 AC 218 ms
103,508 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda : sys.stdin.readline().rstrip()

sys.setrecursionlimit(2*10**5+10)
write = lambda x: sys.stdout.write(x+"\n")
debug = lambda x: sys.stderr.write(x+"\n")
writef = lambda x: print("{:.12f}".format(x))

def hurui(n):
    """線形篩
    pl: 素数のリスト
    mpf: iを割り切る最小の素因数
    """
    pl = []
    mpf = [None]*(n+1)
    for d in range(2,n+1):
        if mpf[d] is None:
            mpf[d] = d
            pl.append(d)
        for p in pl:
            if p*d>n or p>mpf[d]:
                break
            mpf[p*d] = p
    return pl, mpf
from collections import defaultdict
def factor(num):
    d = defaultdict(int)
    if num==1:
        d.update({1:1})
        return d
    while num>1:
        d[mpf[num]] += 1
        num //= mpf[num]
    return d
def fs(num):
    f = factor(num)
    ans = [1]
    for k,v in f.items():
        tmp = []
        for i in range(len(ans)):
            val = 1
            for _ in range(v):
                val *= k
                ans.append(ans[i]*val)
    return ans
def sub(x,p):
    res = 0
    while x%p==0:
        x //= p
        res += 1
    return res
inf = 10**15
from heapq import heappop as hpp, heappush as hp, heapify
def dijkstra(start,d):
    n = len(d)
    vals = [inf] * n
    h = [(0, start)] # (距離, ノード番号)
    vals[start] = 0
    # order = []
    while h:
        val, u = hpp(h)
        if val>vals[u]:
            continue
        # order.append(u)
        for v in range(u+1,n):
            dd = d[u][v]
#         for d,v in ns[u]:
            if vals[v]>val+dd:
                vals[v] = val+dd
                hp(h, (vals[v], v))
    return vals #, order

pl, mpf = hurui(10**6)
t = int(input())
ans = []
for i in range(t):
    x = int(input())
    for p in pl:
        if x%p!=0:
            res = p
            break
    else:
        assert 0
    m = 15
    count = [-1]*m # 回数がiの素数の最小
    for i in range(50)[::-1]:
        v = sub(x,pl[i])
        if v<m:
            count[v] = pl[i]
    inf = 10**9
    d = [[inf]*m for _ in range(m)]
    for i in range(m):
        v = count[i]
        if v==-1:
            continue
        cost = v
        for j in range(i+1,m):
            d[i][j] = cost
            cost *= v
    for i in range(m):
        if 2*i+1<m:
            vals = dijkstra(i, d)
            res = min(res, vals[2*i+1])
    ans.append(res*x)
write("\n".join(map(str, ans)))
0