結果

問題 No.1037 exhausted
ユーザー tcltktcltk
提出日時 2021-01-18 01:19:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,473 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 121,472 KB
最終ジャッジ日時 2024-05-07 14:44:16
合計ジャッジ時間 6,655 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 148 ms
88,704 KB
testcase_01 AC 156 ms
88,960 KB
testcase_02 AC 152 ms
89,088 KB
testcase_03 AC 139 ms
88,960 KB
testcase_04 AC 137 ms
88,960 KB
testcase_05 AC 138 ms
88,960 KB
testcase_06 WA -
testcase_07 AC 150 ms
88,960 KB
testcase_08 AC 148 ms
88,576 KB
testcase_09 WA -
testcase_10 AC 141 ms
88,960 KB
testcase_11 AC 141 ms
89,088 KB
testcase_12 AC 292 ms
121,216 KB
testcase_13 AC 331 ms
120,832 KB
testcase_14 AC 385 ms
121,088 KB
testcase_15 AC 391 ms
121,216 KB
testcase_16 AC 379 ms
121,088 KB
testcase_17 AC 358 ms
121,344 KB
testcase_18 AC 304 ms
121,344 KB
testcase_19 AC 305 ms
121,472 KB
testcase_20 AC 139 ms
88,832 KB
testcase_21 AC 141 ms
89,088 KB
testcase_22 AC 146 ms
88,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """3 5 10
# 2 4 2
# 3 3 3
# 8 2 4
# """
# sys.stdin = io.StringIO(_INPUT)



def main():
    N, V, L = map(int, input().split())
    x = [None for _ in range(N)] + [L]
    v = [None for _ in range(N)]
    w = [None for _ in range(N)]
    for i in range(N):
        x[i], v[i], w[i] = map(int, input().split())
        if i == 0 and V - x[0] < 0:
            print(-1)
            return
        elif i >= 1 and x[i] - x[i-1] > V:
            print(-1)
            return
    if L - x[N-1] > V:
            print(-1)
            return

    dp = [[10**10 for _ in range(V+1)] for _ in range(N+1)]
    dp[0][V-x[0]] = 0
    for i in range(N):
        d = x[i+1] - x[i]
        for v1 in range(V+1):
            if dp[i][v1] < 10**10:
                if v1-(x[i+1]-x[i]) >= 0:
                    dp[i+1][v1-d] = min(dp[i+1][v1-d], dp[i][v1])
                v_filled = min(v1+v[i], V)
                dp[i+1][v_filled-d] = min(dp[i+1][v_filled-d], dp[i][v1] + w[i])

    MinW = min(dp[N])
    if MinW == 10**10:
        print(-1)
    else:
        print(MinW)

if __name__ == '__main__':
    main()
0