結果
問題 | No.555 世界史のレポート |
ユーザー | lloyz |
提出日時 | 2022-09-15 00:15:13 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 88 ms / 2,000 ms |
コード長 | 581 bytes |
コンパイル時間 | 396 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 72,064 KB |
最終ジャッジ日時 | 2024-05-09 03:49:54 |
合計ジャッジ時間 | 2,139 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
52,736 KB |
testcase_01 | AC | 43 ms
52,352 KB |
testcase_02 | AC | 44 ms
52,992 KB |
testcase_03 | AC | 42 ms
52,480 KB |
testcase_04 | AC | 43 ms
52,608 KB |
testcase_05 | AC | 43 ms
52,480 KB |
testcase_06 | AC | 44 ms
52,352 KB |
testcase_07 | AC | 43 ms
52,480 KB |
testcase_08 | AC | 43 ms
52,352 KB |
testcase_09 | AC | 44 ms
52,224 KB |
testcase_10 | AC | 48 ms
57,856 KB |
testcase_11 | AC | 49 ms
58,240 KB |
testcase_12 | AC | 51 ms
59,264 KB |
testcase_13 | AC | 52 ms
59,648 KB |
testcase_14 | AC | 88 ms
72,064 KB |
testcase_15 | AC | 47 ms
58,112 KB |
testcase_16 | AC | 47 ms
57,984 KB |
testcase_17 | AC | 47 ms
57,856 KB |
testcase_18 | AC | 49 ms
58,240 KB |
testcase_19 | AC | 47 ms
57,728 KB |
ソースコード
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 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))