結果

問題 No.1037 exhausted
ユーザー H3PO4H3PO4
提出日時 2021-10-02 13:18:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 604 ms / 2,000 ms
コード長 696 bytes
コンパイル時間 159 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 44,492 KB
最終ジャッジ日時 2024-07-20 06:56:41
合計ジャッジ時間 14,479 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 532 ms
43,848 KB
testcase_01 AC 527 ms
43,720 KB
testcase_02 AC 536 ms
44,232 KB
testcase_03 AC 532 ms
43,720 KB
testcase_04 AC 537 ms
44,104 KB
testcase_05 AC 530 ms
44,112 KB
testcase_06 AC 544 ms
44,240 KB
testcase_07 AC 546 ms
43,976 KB
testcase_08 AC 534 ms
44,108 KB
testcase_09 AC 533 ms
44,236 KB
testcase_10 AC 531 ms
44,492 KB
testcase_11 AC 529 ms
44,360 KB
testcase_12 AC 604 ms
43,972 KB
testcase_13 AC 594 ms
44,112 KB
testcase_14 AC 591 ms
44,284 KB
testcase_15 AC 592 ms
44,116 KB
testcase_16 AC 593 ms
44,360 KB
testcase_17 AC 597 ms
44,236 KB
testcase_18 AC 594 ms
44,360 KB
testcase_19 AC 592 ms
44,376 KB
testcase_20 AC 545 ms
43,896 KB
testcase_21 AC 537 ms
43,848 KB
testcase_22 AC 534 ms
44,372 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N, V, L = map(int, input().split())
INF = 10 ** 18
dp = np.full(V + 1, INF)
dp[V] = 0
cur = 0
for _ in range(N):
    new_dp = np.full(V + 1, INF)
    x, v, w = map(int, input().split())
    if v == 0:
        continue
    dist = x - cur
    if dist > V:
        print(-1)
        exit()
    new_dp[:V + 1 - dist] = dp[dist:]
    dp = new_dp.copy()

    if v <= V:
        new_dp[v:] = np.minimum(new_dp[v:], dp[:-v] + w)
        new_dp[V] = min(new_dp[V], np.min(dp[-v:]) + w)
    else:
        new_dp[V] = min(new_dp[V], np.min(dp) + w)

    dp = new_dp.copy()
    cur = x

if L - cur > V:
    print(-1)
    exit()
ans = np.min(dp[L - cur:])
print(ans if ans != INF else -1)
0