結果

問題 No.2744 Power! or +1
ユーザー tassei903tassei903
提出日時 2024-04-17 05:00:04
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,191 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 414,632 KB
最終ジャッジ日時 2024-10-09 12:39:03
合計ジャッジ時間 12,214 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 330 ms
122,180 KB
testcase_02 AC 153 ms
84,848 KB
testcase_03 AC 161 ms
87,552 KB
testcase_04 AC 331 ms
104,420 KB
testcase_05 WA -
testcase_06 AC 964 ms
193,280 KB
testcase_07 AC 42 ms
52,608 KB
testcase_08 AC 828 ms
159,036 KB
testcase_09 AC 56 ms
63,104 KB
testcase_10 AC 73 ms
67,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b,c = map(int, input().split())

g = [[] for _ in range(n*2)]

g[n].append((0, 0))

fact = 1
fact_ = 0
for i in range(n):
    g[i].append((i+1, a))
    if i < n-1:
        g[i+n].append((i+n+1, a))
    else:
        g[i].append((n, a))
    ok = 0
    for k in range(2, 30):
        if b ** k >= 2 * 10**6:
            break
        if ok^1 and i ** k >= n:
            ok = 1
        if ok:
            g[i].append((pow(i, k, n)+n, b**k))
            g[i+n].append((pow(i, k, n)+n, b**k))
        else:
            g[i].append((i ** k, b**k))
            g[i+n].append((pow(i, k, n)+n, b**k))

    g[i+n].append((0, c))
    if fact_:
        g[i].append((fact + n, c))
    else:
        g[i].append((fact, c))

    if fact * (i+1) >= n:
        fact_ = 1
    fact = fact * (i+1) % n

from heapq import *
INF = 10**18
def dijkstra(g, s, n):
    dist = [INF]*n
    hq = [(0, s)]
    dist[s] = 0
    while hq:
        d, v = heappop(hq)
        if dist[v]!=d:
            continue
        for to, c in g[v]:
            if dist[v] + c < dist[to]:
                dist[to] = dist[v] + c
                heappush(hq, (dist[to], to))
    return dist

dist = dijkstra(g, 1, n*2)
print(dist[0])
0