結果

問題 No.1037 exhausted
ユーザー tcltktcltk
提出日時 2021-01-18 01:38:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 305 ms / 2,000 ms
コード長 1,519 bytes
コンパイル時間 895 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 121,420 KB
最終ジャッジ日時 2024-05-07 15:00:06
合計ジャッジ時間 6,276 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
89,088 KB
testcase_01 AC 136 ms
88,960 KB
testcase_02 AC 136 ms
88,656 KB
testcase_03 AC 134 ms
88,708 KB
testcase_04 AC 134 ms
88,576 KB
testcase_05 AC 134 ms
88,960 KB
testcase_06 AC 151 ms
89,072 KB
testcase_07 AC 149 ms
88,960 KB
testcase_08 AC 146 ms
88,976 KB
testcase_09 AC 135 ms
88,960 KB
testcase_10 AC 135 ms
89,068 KB
testcase_11 AC 152 ms
88,960 KB
testcase_12 AC 305 ms
121,420 KB
testcase_13 AC 274 ms
121,260 KB
testcase_14 AC 291 ms
121,316 KB
testcase_15 AC 295 ms
121,300 KB
testcase_16 AC 297 ms
121,216 KB
testcase_17 AC 294 ms
121,344 KB
testcase_18 AC 300 ms
121,036 KB
testcase_19 AC 299 ms
121,292 KB
testcase_20 AC 146 ms
88,960 KB
testcase_21 AC 138 ms
89,060 KB
testcase_22 AC 136 ms
89,088 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 = """5 8 11
# 2 2 231985796
# 6 0 190979457
# 7 2 373925694
# 8 2 976892608
# 8 1 184831039
# """
# sys.stdin = io.StringIO(_INPUT)



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

    dp = [[10**10 for _ in range(V+1)] for _ in range(N+2)]
    dp[0][V] = 0
    for i in range(N+1):
        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)
                if v_filled - d >= 0:
                    dp[i+1][v_filled-d] = min(dp[i+1][v_filled-d], dp[i][v1] + w[i])

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

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