結果
問題 | No.1037 exhausted |
ユーザー | Kodai |
提出日時 | 2020-04-29 17:23:52 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 803 bytes |
コンパイル時間 | 199 ms |
コンパイル使用メモリ | 82,304 KB |
実行使用メモリ | 145,664 KB |
最終ジャッジ日時 | 2024-11-29 03:18:35 |
合計ジャッジ時間 | 20,502 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
52,352 KB |
testcase_01 | AC | 38 ms
52,096 KB |
testcase_02 | AC | 38 ms
52,096 KB |
testcase_03 | AC | 40 ms
52,096 KB |
testcase_04 | AC | 42 ms
52,480 KB |
testcase_05 | AC | 40 ms
51,840 KB |
testcase_06 | AC | 39 ms
52,224 KB |
testcase_07 | AC | 42 ms
52,352 KB |
testcase_08 | AC | 41 ms
52,352 KB |
testcase_09 | AC | 39 ms
52,352 KB |
testcase_10 | AC | 39 ms
52,352 KB |
testcase_11 | AC | 40 ms
52,608 KB |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | AC | 1,995 ms
143,144 KB |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | AC | 1,258 ms
109,988 KB |
testcase_21 | AC | 907 ms
108,800 KB |
testcase_22 | AC | 291 ms
109,056 KB |
ソースコード
N, V, L = list(map(int, input().split())) shop_list = [list(map(int, input().split())) for i in range(N)] + [[0, 0, 0]] dis_list = [shop_list[0][0]] + [(shop_list[i + 1][0] - shop_list[i][0]) for i in range(len(shop_list) - 2)] + [L - shop_list[-2][0]] dp_list = [[float("inf") for i in range(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]]) dp_list[n + 1][min([V, v - dis_list[n] + shop_list[n][1]]) ] = min([dp_list[n + 1][min([V, v - dis_list[n] + shop_list[n][1]])], dp_list[n][v] + shop_list[n][2]]) print(min(dp_list[N + 1]) if min(dp_list[N + 1]) != float("inf") else -1)