結果

問題 No.1037 exhausted
ユーザー hedwig100hedwig100
提出日時 2020-04-24 23:27:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 416 ms / 2,000 ms
コード長 938 bytes
コンパイル時間 749 ms
コンパイル使用メモリ 86,496 KB
実行使用メモリ 109,832 KB
最終ジャッジ日時 2023-08-05 06:08:18
合計ジャッジ時間 5,783 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
71,552 KB
testcase_01 AC 90 ms
71,188 KB
testcase_02 AC 89 ms
71,560 KB
testcase_03 AC 90 ms
71,520 KB
testcase_04 AC 89 ms
71,600 KB
testcase_05 AC 89 ms
71,516 KB
testcase_06 AC 90 ms
71,344 KB
testcase_07 AC 93 ms
71,516 KB
testcase_08 AC 90 ms
71,516 KB
testcase_09 AC 89 ms
71,468 KB
testcase_10 AC 89 ms
71,500 KB
testcase_11 AC 89 ms
71,416 KB
testcase_12 AC 416 ms
109,392 KB
testcase_13 AC 265 ms
109,568 KB
testcase_14 AC 270 ms
109,604 KB
testcase_15 AC 273 ms
109,604 KB
testcase_16 AC 264 ms
109,504 KB
testcase_17 AC 267 ms
109,656 KB
testcase_18 AC 268 ms
109,360 KB
testcase_19 AC 270 ms
109,588 KB
testcase_20 AC 283 ms
109,564 KB
testcase_21 AC 238 ms
109,540 KB
testcase_22 AC 225 ms
109,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

INF = 10 ** 16
MOD = 10 **9 + 7
import sys
sys.setrecursionlimit(100000000)
dy = (-1,0,1,0)
dx = (0,1,0,-1)
from  collections import deque
from math import factorial

def main():
    n,V,L = map(int,input().split())
    Gas = [(0,0,INF)] + [tuple(map(int,input().split())) for _ in range(n)] + [(L,0,INF)]
    
    dp = [[0] * (V + 1)] + [[INF] * (V + 1) for _ in range(n + 1)]
    for i in range(n + 1):
        before_x,before_v,before_w = Gas[i]
        x,v,w = Gas[i + 1]
        for j in range(V + 1):      
            if min(j + before_v,V) - x + before_x >= 0: 
                dp[i + 1][min(j + before_v,V) - x + before_x] = min(dp[i + 1][min(j + before_v,V) - x + before_x],dp[i][j] + before_w)
            if j - x + before_x >= 0:
                dp[i + 1][j - x + before_x] = min(dp[i + 1][j - x + before_x],dp[i][j])
    ans = min(dp[-1])
    print(ans if ans != INF else -1)            
if __name__=='__main__':
    main()
0