結果

問題 No.1 道のショートカット
ユーザー sotanishysotanishy
提出日時 2021-03-16 19:37:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 141 ms / 5,000 ms
コード長 815 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 77,648 KB
最終ジャッジ日時 2024-11-08 09:23:04
合計ジャッジ時間 4,801 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,480 KB
testcase_01 AC 44 ms
52,864 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 44 ms
52,992 KB
testcase_04 AC 43 ms
52,480 KB
testcase_05 AC 43 ms
52,480 KB
testcase_06 AC 44 ms
52,608 KB
testcase_07 AC 44 ms
52,608 KB
testcase_08 AC 110 ms
77,056 KB
testcase_09 AC 72 ms
67,456 KB
testcase_10 AC 98 ms
76,928 KB
testcase_11 AC 139 ms
77,332 KB
testcase_12 AC 134 ms
77,512 KB
testcase_13 AC 133 ms
77,648 KB
testcase_14 AC 45 ms
53,248 KB
testcase_15 AC 43 ms
52,480 KB
testcase_16 AC 59 ms
63,488 KB
testcase_17 AC 43 ms
52,608 KB
testcase_18 AC 44 ms
53,120 KB
testcase_19 AC 44 ms
53,248 KB
testcase_20 AC 100 ms
76,544 KB
testcase_21 AC 61 ms
63,104 KB
testcase_22 AC 46 ms
53,376 KB
testcase_23 AC 123 ms
77,272 KB
testcase_24 AC 126 ms
76,972 KB
testcase_25 AC 105 ms
76,416 KB
testcase_26 AC 84 ms
71,040 KB
testcase_27 AC 141 ms
77,312 KB
testcase_28 AC 45 ms
52,864 KB
testcase_29 AC 93 ms
74,240 KB
testcase_30 AC 57 ms
61,568 KB
testcase_31 AC 64 ms
64,384 KB
testcase_32 AC 103 ms
76,928 KB
testcase_33 AC 92 ms
74,112 KB
testcase_34 AC 123 ms
77,156 KB
testcase_35 AC 51 ms
60,288 KB
testcase_36 AC 80 ms
70,272 KB
testcase_37 AC 56 ms
62,592 KB
testcase_38 AC 44 ms
52,608 KB
testcase_39 AC 45 ms
53,120 KB
testcase_40 AC 52 ms
59,264 KB
testcase_41 AC 45 ms
52,736 KB
testcase_42 AC 44 ms
52,864 KB
testcase_43 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop
import sys
input = sys.stdin.readline

N = int(input())
C = int(input())
V = int(input())
S = list(map(lambda x: int(x) - 1, input().split()))
T = list(map(lambda x: int(x) - 1, input().split()))
Y = list(map(int, input().split()))
M = list(map(int, input().split()))

G = [[] for _ in range(N)]
for s, t, y, m in zip(S, T, Y, M):
    G[s].append((t, y, m))

INF = 10**18
dist = [[INF] * (C + 1) for _ in range(N)]
dist[0][0] = 0
pq = [(0, 0, 0)]
while pq:
    d, s, c = heappop(pq)
    if dist[s][c] < d:
        continue
    for t, y, m in G[s]:
        if c + y > C:
            continue
        nd = d + m
        nc = c + y
        if nd < dist[t][nc]:
            dist[t][nc] = nd
            heappush(pq, (nd, t, nc))
ans = min(dist[-1])
print(ans if ans < INF else -1)


0