結果

問題 No.860 買い物
ユーザー suika_psuika_p
提出日時 2019-08-09 23:18:55
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 444 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 82,432 KB
最終ジャッジ日時 2024-07-19 15:49:45
合計ジャッジ時間 3,451 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
56,960 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 50 ms
60,160 KB
testcase_05 AC 74 ms
75,776 KB
testcase_06 TLE -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = [0] * N
D = [0] * N
for i in range(N):
    C[i], D[i] = map(int, input().split())

INF = pow(10, 12)
dp = [INF] * (N+1)
dp[0] = 0

for i in range(N):
    dp[i+1] = min(dp[i+1], dp[i] + C[i] * 2)
    if i >= 1:
        dp[i+1] = min(dp[i+1], sum(C[:i+1]) + min(C[:i+1]) + sum(D[:i+1]) - D[0])
    for j in range(i):
        dp[i+1] = min(dp[i+1], dp[j] + sum(C[j:i+1]) + min(C[j:i+1]) + sum(D[j:i+1]) - D[j])


print(dp[N])
0