結果

問題 No.1037 exhausted
ユーザー tcltktcltk
提出日時 2021-01-18 01:39:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 251 ms / 2,000 ms
コード長 1,526 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 90,600 KB
最終ジャッジ日時 2024-05-07 15:01:40
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
88,920 KB
testcase_01 AC 127 ms
89,172 KB
testcase_02 AC 129 ms
89,120 KB
testcase_03 AC 132 ms
89,124 KB
testcase_04 AC 130 ms
89,136 KB
testcase_05 AC 135 ms
89,056 KB
testcase_06 AC 131 ms
89,060 KB
testcase_07 AC 129 ms
89,056 KB
testcase_08 AC 131 ms
88,980 KB
testcase_09 AC 131 ms
89,120 KB
testcase_10 AC 131 ms
88,760 KB
testcase_11 AC 132 ms
88,976 KB
testcase_12 AC 236 ms
89,848 KB
testcase_13 AC 228 ms
89,944 KB
testcase_14 AC 242 ms
90,480 KB
testcase_15 AC 239 ms
90,164 KB
testcase_16 AC 245 ms
90,096 KB
testcase_17 AC 238 ms
90,072 KB
testcase_18 AC 248 ms
90,600 KB
testcase_19 AC 251 ms
90,568 KB
testcase_20 AC 133 ms
89,264 KB
testcase_21 AC 130 ms
88,652 KB
testcase_22 AC 133 ms
88,648 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)]
    dp[V] = 0
    for i in range(N+1):
        dp1 = [10**10 for _ in range(V+1)]
        d = x[i+1] - x[i]
        for v1 in range(V+1):
            if dp[v1] < 10**10:
                if v1-(x[i+1]-x[i]) >= 0:
                    dp1[v1-d] = min(dp1[v1-d], dp[v1])
                v_filled = min(v1+v[i], V)
                if v_filled - d >= 0:
                    dp1[v_filled-d] = min(dp1[v_filled-d], dp[v1] + w[i])
        dp = dp1

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

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