結果

問題 No.1037 exhausted
ユーザー flippergoflippergo
提出日時 2024-10-13 07:50:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 81,904 KB
実行使用メモリ 102,724 KB
最終ジャッジ日時 2024-10-13 07:50:56
合計ジャッジ時間 3,512 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,968 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 38 ms
52,352 KB
testcase_04 AC 38 ms
52,352 KB
testcase_05 AC 38 ms
52,096 KB
testcase_06 AC 38 ms
52,096 KB
testcase_07 AC 37 ms
51,968 KB
testcase_08 AC 37 ms
52,096 KB
testcase_09 AC 48 ms
52,096 KB
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 37 ms
51,840 KB
testcase_12 AC 196 ms
102,272 KB
testcase_13 AC 173 ms
102,336 KB
testcase_14 AC 195 ms
102,656 KB
testcase_15 AC 170 ms
102,540 KB
testcase_16 AC 167 ms
102,400 KB
testcase_17 AC 173 ms
102,104 KB
testcase_18 AC 170 ms
102,308 KB
testcase_19 AC 169 ms
102,132 KB
testcase_20 AC 155 ms
102,232 KB
testcase_21 AC 167 ms
102,528 KB
testcase_22 AC 120 ms
102,724 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,L = map(int,input().split())
A = [(0,0,0)]+[list(map(int,input().split())) for _ in range(N)]+[(L,0,0)]
INFTY = 10**13
dp = [[INFTY for _ in range(V+1)] for _ in range(N+2)]
for j in range(V+1):
    dp[0][j] = 0
for i in range(1,N+2):
    x0,v0,w0 = A[i-1]
    x1,v1,w1 = A[i]
    dx = x1-x0
    for j in range(V-dx+1):
        dp[i][j] = dp[i-1][j+dx]
        if j+dx>=v0:
            dp[i][j] = min(dp[i][j],dp[i-1][j+dx-v0]+w0)
ans = min(dp[N+1])
if ans>=INFTY:
    print(-1)
else:
    print(ans)
0