結果

問題 No.555 世界史のレポート
ユーザー lloyzlloyz
提出日時 2022-09-15 00:10:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 629 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,936 KB
最終ジャッジ日時 2024-05-09 03:45:34
合計ジャッジ時間 2,309 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,352 KB
testcase_01 AC 43 ms
52,480 KB
testcase_02 AC 44 ms
52,736 KB
testcase_03 AC 43 ms
52,736 KB
testcase_04 AC 43 ms
52,864 KB
testcase_05 AC 45 ms
52,352 KB
testcase_06 AC 43 ms
52,352 KB
testcase_07 AC 42 ms
52,736 KB
testcase_08 AC 43 ms
52,992 KB
testcase_09 AC 44 ms
52,352 KB
testcase_10 AC 48 ms
58,240 KB
testcase_11 AC 47 ms
58,112 KB
testcase_12 AC 52 ms
59,520 KB
testcase_13 AC 50 ms
59,392 KB
testcase_14 WA -
testcase_15 AC 48 ms
58,112 KB
testcase_16 AC 47 ms
57,984 KB
testcase_17 AC 48 ms
57,856 KB
testcase_18 AC 48 ms
58,112 KB
testcase_19 AC 47 ms
58,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush

n = int(input())
c, v = map(int, input().split())

H = [(c, 1, 1)]
INF = 10**18
DP = [INF for _ in range(n + 1)]
DP[1] = c
heapify(H)
while H:
    cost, num, c_num = heappop(H)
    if cost > DP[min(num, n)]:
        continue
    if num >= n:
        print(cost)
        break
    if c_num != num:
        if cost + c + v < DP[min(num * 2, n)]:
            DP[min(num * 2, n)] = cost + c + v
            heappush(H, (cost + c + v, num * 2, num))
    if cost + v < DP[min(num + c_num, n)]:
        DP[min(num + c_num, n)] = cost + v
        heappush(H, (cost + v, num + c_num, c_num))
0