結果

問題 No.1037 exhausted
ユーザー konchanksukonchanksu
提出日時 2020-04-28 18:16:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 913 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 175,260 KB
最終ジャッジ日時 2024-05-03 21:44:14
合計ジャッジ時間 4,271 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 34 ms
10,752 KB
testcase_04 RE -
testcase_05 AC 34 ms
10,752 KB
testcase_06 RE -
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 TLE -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, V, L = map(int, input().split())
x = [[0, 0, 0]] # 地点 補給できる量 コスト
for i in range(N):
    t, m, p = map(int, input().split())
    if m == 0:
        continue 
    x.append([t, m, p])

x += [[L, 0, 0]]
x.sort(key=lambda x:x[0])

dp = [[float('inf') for j in range(V + 1)] for i in range(N + 2)]
dp[0][V] = 0

for i in range(N + 1):
    for j in range(V + 1):
        if dp[i][j] != float('inf'):
            if j + x[i][0] - x[i + 1][0] >= 0:
                # 補給しない
                dp[i + 1][j + x[i][0] - x[i + 1][0]] = min(dp[i][j], dp[i + 1][j + x[i][0] - x[i + 1][0]])
                # 補給する
                dp[i + 1][min(V, j + x[i][0] - x[i + 1][0] + x[i + 1][1])] = min(dp[i][j] + x[i + 1][2], dp[i + 1][min(V, j + x[i][0] - x[i + 1][0] + x[i + 1][1])])

ans = float('inf')
for i in dp[N + 1]:
    ans = min(i, ans)

print(-1 if ans == float('inf') else ans)

    
0