結果

問題 No.1 道のショートカット
ユーザー terasaterasa
提出日時 2022-06-01 21:52:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 5,000 ms
コード長 1,000 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 77,952 KB
最終ジャッジ日時 2024-09-21 01:44:22
合計ジャッジ時間 4,648 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
54,784 KB
testcase_01 AC 45 ms
54,400 KB
testcase_02 AC 45 ms
54,656 KB
testcase_03 AC 42 ms
54,272 KB
testcase_04 AC 44 ms
54,784 KB
testcase_05 AC 42 ms
54,528 KB
testcase_06 AC 43 ms
54,400 KB
testcase_07 AC 43 ms
54,656 KB
testcase_08 AC 90 ms
77,568 KB
testcase_09 AC 71 ms
69,888 KB
testcase_10 AC 88 ms
76,928 KB
testcase_11 AC 96 ms
77,440 KB
testcase_12 AC 109 ms
77,952 KB
testcase_13 AC 106 ms
77,696 KB
testcase_14 AC 51 ms
60,416 KB
testcase_15 AC 48 ms
59,904 KB
testcase_16 AC 53 ms
62,208 KB
testcase_17 AC 47 ms
59,520 KB
testcase_18 AC 49 ms
60,288 KB
testcase_19 AC 49 ms
60,672 KB
testcase_20 AC 89 ms
77,184 KB
testcase_21 AC 63 ms
65,664 KB
testcase_22 AC 50 ms
60,416 KB
testcase_23 AC 112 ms
77,696 KB
testcase_24 AC 103 ms
77,824 KB
testcase_25 AC 88 ms
77,056 KB
testcase_26 AC 77 ms
72,064 KB
testcase_27 AC 105 ms
77,312 KB
testcase_28 AC 46 ms
59,392 KB
testcase_29 AC 80 ms
73,984 KB
testcase_30 AC 58 ms
64,000 KB
testcase_31 AC 66 ms
67,200 KB
testcase_32 AC 90 ms
77,312 KB
testcase_33 AC 78 ms
74,240 KB
testcase_34 AC 98 ms
77,824 KB
testcase_35 AC 49 ms
61,440 KB
testcase_36 AC 72 ms
71,424 KB
testcase_37 AC 55 ms
63,744 KB
testcase_38 AC 47 ms
59,776 KB
testcase_39 AC 47 ms
60,032 KB
testcase_40 AC 53 ms
62,592 KB
testcase_41 AC 44 ms
54,912 KB
testcase_42 AC 45 ms
54,400 KB
testcase_43 AC 48 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import pypyjit
import itertools
import heapq
import math
from collections import deque, defaultdict
import bisect

input = sys.stdin.readline
sys.setrecursionlimit(10 ** 6)
pypyjit.set_param('max_unroll_recursion=-1')


N = int(input())
C = int(input())
V = int(input())
S = list(map(int, input().split()))
T = list(map(int, input().split()))
Y = list(map(int, input().split()))
M = list(map(int, input().split()))

INF = 1 << 30
E = [[] for _ in range(N + 1)]
for s, t, y, m in zip(S, T, Y, M):
    E[s].append((t, y, m))

# dp[i][j] := 町iに総コストjかけて辿り着ける最小の時間
dp = [[INF for _ in range(C + 1)] for _ in range(N + 1)]
dp[1][0] = 0
h = [(0, 1, 0)]

while len(h) > 0:
    _, v, c = heapq.heappop(h)

    for d, y, m in E[v]:
        if c + y > C:
            continue
        if dp[d][c + y] > dp[v][c] + m:
            dp[d][c + y] = dp[v][c] + m
            heapq.heappush(h, (dp[d][c + y], d, c + y))

ans = min(dp[N])
print(ans if ans < INF else -1)
0