結果

問題 No.1037 exhausted
ユーザー tanon710tanon710
提出日時 2020-05-04 16:35:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 2,000 ms
コード長 600 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,908 KB
実行使用メモリ 105,784 KB
最終ジャッジ日時 2024-06-24 14:55:59
合計ジャッジ時間 3,713 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,528 KB
testcase_01 AC 39 ms
52,332 KB
testcase_02 AC 39 ms
53,492 KB
testcase_03 AC 39 ms
54,152 KB
testcase_04 AC 40 ms
53,004 KB
testcase_05 AC 38 ms
52,820 KB
testcase_06 AC 38 ms
52,496 KB
testcase_07 AC 38 ms
53,316 KB
testcase_08 AC 39 ms
52,940 KB
testcase_09 AC 39 ms
53,068 KB
testcase_10 AC 38 ms
53,872 KB
testcase_11 AC 38 ms
53,544 KB
testcase_12 AC 222 ms
105,428 KB
testcase_13 AC 208 ms
105,784 KB
testcase_14 AC 209 ms
105,300 KB
testcase_15 AC 206 ms
105,612 KB
testcase_16 AC 213 ms
105,300 KB
testcase_17 AC 210 ms
104,760 KB
testcase_18 AC 209 ms
104,992 KB
testcase_19 AC 212 ms
105,428 KB
testcase_20 AC 110 ms
104,872 KB
testcase_21 AC 99 ms
104,088 KB
testcase_22 AC 103 ms
104,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,v,l=map(int,input().split())
arr=[list(map(int,input().split())) for _ in range(n)]
n+=1
arr.append([l,0,0])
dp=[[10**18]*(v+1) for _ in range(n+1)]
dp[0][v]=0
now=0
for i in range(n):
    dist=arr[i][0]-now
    gas=arr[i][1]
    cost=arr[i][2]
    flag=False
    for j in range(v-dist,-1,-1):
        dp[i+1][j]=dp[i][j+dist]
        if dp[i+1][j]!=10**18:
            flag=True
    if flag==False:
        print(-1)
        break
    else:
        for j in range(v,-1,-1):
            dp[i+1][min(v,j+gas)]=min(dp[i+1][min(v,j+gas)],dp[i+1][j]+cost)
    now=arr[i][0]
else:
    print(min(dp[-1]))
0