結果

問題 No.1037 exhausted
ユーザー 👑 rin204rin204
提出日時 2022-07-10 16:16:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 568 bytes
コンパイル時間 399 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 76,928 KB
最終ジャッジ日時 2024-06-11 05:09:17
合計ジャッジ時間 3,584 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 41 ms
51,840 KB
testcase_02 AC 41 ms
51,584 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 41 ms
51,968 KB
testcase_05 AC 44 ms
51,968 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 41 ms
52,096 KB
testcase_08 AC 42 ms
51,840 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 43 ms
51,840 KB
testcase_11 AC 43 ms
51,968 KB
testcase_12 AC 160 ms
76,928 KB
testcase_13 AC 169 ms
76,416 KB
testcase_14 AC 154 ms
76,416 KB
testcase_15 AC 156 ms
76,800 KB
testcase_16 AC 155 ms
76,416 KB
testcase_17 AC 157 ms
76,404 KB
testcase_18 AC 153 ms
76,416 KB
testcase_19 AC 154 ms
76,416 KB
testcase_20 AC 139 ms
76,288 KB
testcase_21 AC 134 ms
76,416 KB
testcase_22 AC 121 ms
76,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, V_, l = map(int, input().split())
X = [-1] * n
V = [-1] * n
W = [-1] * n
for i in range(n):
    X[i], V[i], W[i] = map(int, input().split())
bef = 0
inf = 1 << 60
dp = [inf] * (V_ + 1)
dp[V_] = 0
for x, v, w in zip(X, V, W):
    d = x - bef
    bef = x
    ndp = [inf] * (V_ + 1)
    for i in range(d, V_ + 1):
        ndp[i - d] = dp[i]
    for i in range(V_, -1, -1):
        j = min(V_, i + v)
        ndp[j] = min(ndp[j], ndp[i] + w)
    dp = ndp
d = l - bef
try:
    ans = min(dp[d:])
    if ans == inf:
        ans = -1
    print(ans)
except:
    print(-1)


0