結果

問題 No.1037 exhausted
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-03-27 23:13:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 158 ms / 2,000 ms
コード長 559 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,120 KB
実行使用メモリ 77,404 KB
最終ジャッジ日時 2024-11-06 16:12:08
合計ジャッジ時間 3,128 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,208 KB
testcase_01 AC 39 ms
51,944 KB
testcase_02 AC 38 ms
52,316 KB
testcase_03 AC 39 ms
53,224 KB
testcase_04 AC 39 ms
53,372 KB
testcase_05 AC 38 ms
53,656 KB
testcase_06 AC 38 ms
52,396 KB
testcase_07 AC 38 ms
52,716 KB
testcase_08 AC 40 ms
53,076 KB
testcase_09 AC 42 ms
53,028 KB
testcase_10 AC 39 ms
52,336 KB
testcase_11 AC 40 ms
53,372 KB
testcase_12 AC 141 ms
76,848 KB
testcase_13 AC 140 ms
77,044 KB
testcase_14 AC 143 ms
76,760 KB
testcase_15 AC 150 ms
77,064 KB
testcase_16 AC 150 ms
77,264 KB
testcase_17 AC 148 ms
77,404 KB
testcase_18 AC 158 ms
76,836 KB
testcase_19 AC 157 ms
76,860 KB
testcase_20 AC 92 ms
76,476 KB
testcase_21 AC 88 ms
76,612 KB
testcase_22 AC 83 ms
76,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,V,l = map(int,input().split())
XVW = [list(map(int,input().split())) for i in range(n)]
inf = 10**15
dp = [inf]*(V+1)
dp[V] = 0
now = 0
for x,v,w in XVW:
    dif = x-now
    now = x
    ndp = [inf]*(V+1)
    mi = inf
    for j in range(dif,V+1)[::-1]:
        if dp[j] == inf:
            continue
        mi = min(mi,dp[j])
        ndp[j-dif] = min(ndp[j-dif],dp[j])
        ndp[min(j-dif+v,V)] = min(ndp[min(j-dif+v,V)],dp[j]+w)
    dp = ndp

dif = l-now
ans = inf
for i in range(dif,V+1):
    ans = min(ans,dp[i])
if ans == inf:
    ans = -1

print(ans)
0