結果

問題 No.1037 exhausted
ユーザー vwxyzvwxyz
提出日時 2024-08-14 21:02:42
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 475 bytes
コンパイル時間 184 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 17,692 KB
最終ジャッジ日時 2024-08-14 21:02:48
合計ジャッジ時間 4,485 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 28 ms
10,880 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 28 ms
10,752 KB
testcase_11 AC 27 ms
10,752 KB
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N,V,L=map(int,input().split())
inf=1<<60
dp=[inf]*(V+1)
dp[V]=0
cur=0
for i in range(N):
    x,v,w=map(int,input().split())
    prev=dp
    dp=[inf]*(V+1)
    for c in range(x-cur,V+1):
        dp[c-(x-cur)]=prev[c]
    prev=dp
    dp=[inf]*(V+1)
    for c in range(V+1):
        dp[c]=min(dp[c],prev[c])
        dp[min(c+v,V)]=min(dp[min(c+v,V)],prev[c]+w)
    cur=x
ans=inf
for v in range(V+1):
    if v>=L-cur:
        ans=min(ans,dp[v])
if ans==inf:
    ans=-1
print(ans)
0