結果

問題 No.1037 exhausted
ユーザー roarisroaris
提出日時 2020-04-24 22:46:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 204 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 108,160 KB
最終ジャッジ日時 2024-10-15 03:17:49
合計ジャッジ時間 3,592 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 36 ms
51,840 KB
testcase_02 AC 37 ms
51,840 KB
testcase_03 AC 37 ms
51,840 KB
testcase_04 AC 36 ms
52,072 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 37 ms
51,840 KB
testcase_07 AC 37 ms
51,840 KB
testcase_08 AC 36 ms
52,096 KB
testcase_09 AC 36 ms
52,352 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 37 ms
52,096 KB
testcase_12 AC 198 ms
107,776 KB
testcase_13 AC 199 ms
108,032 KB
testcase_14 AC 201 ms
107,836 KB
testcase_15 AC 197 ms
107,904 KB
testcase_16 AC 204 ms
107,648 KB
testcase_17 AC 204 ms
108,032 KB
testcase_18 AC 197 ms
108,160 KB
testcase_19 AC 204 ms
107,776 KB
testcase_20 AC 149 ms
107,392 KB
testcase_21 AC 120 ms
92,288 KB
testcase_22 AC 104 ms
107,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N, V, L = map(int, input().split())
dp = [[10**18]*(V+1) for _ in range(N+1)]
dp[0][V] = 0
prev_x = 0

for i in range(N):
    x, v, w = map(int, input().split())
    use = x-prev_x
    
    for j in range(V+1):
        if j<use:
            continue
        
        dp[i+1][j-use] = min(dp[i+1][j-use], dp[i][j])
        k = min(V, j-use+v)
        dp[i+1][k] = min(dp[i+1][k], dp[i][j]+w)

    prev_x = x

ans = 10**18
use = L-prev_x

for i in range(V+1):
    if i<use:
        continue
    
    ans = min(ans, dp[N][i])

if ans==10**18:
    print(-1)
else:
    print(ans)
0