結果

問題 No.1 道のショートカット
ユーザー terasaterasa
提出日時 2022-06-01 21:35:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,026 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,464 KB
実行使用メモリ 79,764 KB
最終ジャッジ日時 2024-09-21 01:44:17
合計ジャッジ時間 5,720 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
56,104 KB
testcase_01 AC 46 ms
54,668 KB
testcase_02 AC 46 ms
55,716 KB
testcase_03 AC 43 ms
55,624 KB
testcase_04 AC 44 ms
56,160 KB
testcase_05 AC 46 ms
55,436 KB
testcase_06 AC 44 ms
55,824 KB
testcase_07 AC 44 ms
54,784 KB
testcase_08 AC 143 ms
78,776 KB
testcase_09 AC 133 ms
78,056 KB
testcase_10 AC 102 ms
77,396 KB
testcase_11 AC 119 ms
78,452 KB
testcase_12 AC 214 ms
79,528 KB
testcase_13 AC 208 ms
79,764 KB
testcase_14 AC 87 ms
77,024 KB
testcase_15 AC 46 ms
60,264 KB
testcase_16 WA -
testcase_17 AC 47 ms
61,872 KB
testcase_18 AC 95 ms
77,212 KB
testcase_19 AC 114 ms
77,420 KB
testcase_20 AC 107 ms
77,312 KB
testcase_21 WA -
testcase_22 AC 103 ms
77,408 KB
testcase_23 AC 120 ms
78,088 KB
testcase_24 AC 139 ms
78,216 KB
testcase_25 AC 135 ms
78,244 KB
testcase_26 AC 109 ms
77,412 KB
testcase_27 AC 172 ms
78,896 KB
testcase_28 AC 87 ms
77,336 KB
testcase_29 AC 92 ms
77,488 KB
testcase_30 AC 69 ms
69,940 KB
testcase_31 AC 75 ms
72,520 KB
testcase_32 AC 125 ms
78,100 KB
testcase_33 AC 110 ms
78,024 KB
testcase_34 AC 133 ms
77,884 KB
testcase_35 AC 54 ms
63,724 KB
testcase_36 AC 85 ms
77,036 KB
testcase_37 WA -
testcase_38 AC 51 ms
61,768 KB
testcase_39 WA -
testcase_40 AC 73 ms
72,920 KB
testcase_41 AC 50 ms
62,164 KB
testcase_42 AC 45 ms
55,488 KB
testcase_43 AC 46 ms
60,396 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))
    E[t].append((s, y, m))

# t[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