結果

問題 No.1 道のショートカット
ユーザー Mao-betaMao-beta
提出日時 2024-02-27 22:28:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 64 ms / 5,000 ms
コード長 1,162 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 69,504 KB
最終ジャッジ日時 2024-09-29 12:10:35
合計ジャッジ時間 3,767 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
55,680 KB
testcase_01 AC 42 ms
55,680 KB
testcase_02 AC 42 ms
55,296 KB
testcase_03 AC 42 ms
55,680 KB
testcase_04 AC 41 ms
55,680 KB
testcase_05 AC 45 ms
56,064 KB
testcase_06 AC 41 ms
55,936 KB
testcase_07 AC 40 ms
55,680 KB
testcase_08 AC 55 ms
68,096 KB
testcase_09 AC 52 ms
65,408 KB
testcase_10 AC 54 ms
68,224 KB
testcase_11 AC 55 ms
67,712 KB
testcase_12 AC 59 ms
68,864 KB
testcase_13 AC 59 ms
68,224 KB
testcase_14 AC 45 ms
62,592 KB
testcase_15 AC 42 ms
55,680 KB
testcase_16 AC 49 ms
64,768 KB
testcase_17 AC 43 ms
60,800 KB
testcase_18 AC 46 ms
62,592 KB
testcase_19 AC 46 ms
61,440 KB
testcase_20 AC 52 ms
65,792 KB
testcase_21 AC 50 ms
64,256 KB
testcase_22 AC 48 ms
62,464 KB
testcase_23 AC 64 ms
69,248 KB
testcase_24 AC 62 ms
69,376 KB
testcase_25 AC 52 ms
66,560 KB
testcase_26 AC 49 ms
63,744 KB
testcase_27 AC 59 ms
67,968 KB
testcase_28 AC 46 ms
61,312 KB
testcase_29 AC 57 ms
69,504 KB
testcase_30 AC 54 ms
66,560 KB
testcase_31 AC 54 ms
67,072 KB
testcase_32 AC 54 ms
66,688 KB
testcase_33 AC 53 ms
66,816 KB
testcase_34 AC 58 ms
67,968 KB
testcase_35 AC 53 ms
66,432 KB
testcase_36 AC 53 ms
67,968 KB
testcase_37 AC 52 ms
66,560 KB
testcase_38 AC 45 ms
61,056 KB
testcase_39 AC 47 ms
61,952 KB
testcase_40 AC 50 ms
66,048 KB
testcase_41 AC 44 ms
62,080 KB
testcase_42 AC 42 ms
55,552 KB
testcase_43 AC 42 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    C = NI()
    V = NI()
    S = NLI()
    T = NLI()
    Y = NLI()
    M = NLI()
    INF = 10**18
    dp = [[INF]*(C+1) for _ in range(N)]
    dp[0][C] = 0
    E = [[s-1, t-1, y, m] for s, t, y, m in zip(S, T, Y, M)]
    E.sort()
    for s, t, y, m in E:
        for c in range(C+1):
            if dp[s][c] >= INF:
                continue
            if c - y < 0:
                continue
            dp[t][c-y] = min(dp[t][c-y], dp[s][c] + m)
    ans = min(dp[-1])
    if ans < INF:
        print(ans)
    else:
        print(-1)


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