結果
問題 | No.1037 exhausted |
ユーザー | Kodai |
提出日時 | 2020-04-29 17:22:45 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 823 bytes |
コンパイル時間 | 170 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 132,480 KB |
最終ジャッジ日時 | 2024-05-06 18:22:03 |
合計ジャッジ時間 | 4,931 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | OLE | - |
testcase_13 | OLE | - |
testcase_14 | OLE | - |
testcase_15 | OLE | - |
testcase_16 | OLE | - |
testcase_17 | OLE | - |
testcase_18 | OLE | - |
testcase_19 | OLE | - |
testcase_20 | OLE | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
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): print(n, v) 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)