結果

問題 No.1037 exhausted
ユーザー hedwig100hedwig100
提出日時 2020-04-24 23:27:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 938 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 49,824 KB
最終ジャッジ日時 2024-04-23 04:18:01
合計ジャッジ時間 4,090 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
16,384 KB
testcase_01 AC 27 ms
11,008 KB
testcase_02 AC 27 ms
11,136 KB
testcase_03 AC 25 ms
11,008 KB
testcase_04 AC 27 ms
11,008 KB
testcase_05 AC 25 ms
11,008 KB
testcase_06 AC 26 ms
11,136 KB
testcase_07 AC 26 ms
11,008 KB
testcase_08 AC 27 ms
11,008 KB
testcase_09 AC 27 ms
11,008 KB
testcase_10 AC 27 ms
11,008 KB
testcase_11 AC 26 ms
11,008 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 #

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