結果

問題 No.1037 exhausted
ユーザー KodaiKodai
提出日時 2020-04-29 18:04:20
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 741 bytes
コンパイル時間 73 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 85,760 KB
最終ジャッジ日時 2024-11-29 05:14:04
合計ジャッジ時間 31,392 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
17,696 KB
testcase_01 AC 25 ms
53,504 KB
testcase_02 AC 25 ms
17,568 KB
testcase_03 AC 25 ms
53,504 KB
testcase_04 AC 25 ms
17,700 KB
testcase_05 AC 29 ms
17,572 KB
testcase_06 AC 29 ms
17,696 KB
testcase_07 AC 29 ms
53,504 KB
testcase_08 AC 26 ms
17,572 KB
testcase_09 AC 27 ms
53,504 KB
testcase_10 AC 26 ms
17,696 KB
testcase_11 AC 27 ms
53,632 KB
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 AC 167 ms
85,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, V, L = list(map(int, input().split()))
shop_list = [list(map(int, input().split())) for i in range(N)] + [[L, 0, 0]]
dis_list = [shop_list[0][0]] + [(shop_list[i + 1][0] - shop_list[i][0])
                                for i in range(len(shop_list) - 1)]

dp_list = [[float("inf")] * (V + 1) for j in range(N + 2)]
dp_list[0][V] = 0

for n in range(N + 1):
    for v in range(dis_list[n], V + 1):
        dp_list[n + 1][v - dis_list[n]] = min([dp_list[n + 1][v - dis_list[n]], dp_list[n][v]])
        gas = min([V, v - dis_list[n] + shop_list[n][1]])
        dp_list[n + 1][gas] = min([dp_list[n + 1][gas], dp_list[n][v] + shop_list[n][2]])

ans = min(dp_list[-1])
if min(dp_list[-1]) == float("inf"):
    print(-1)
else:
    print(ans)
0