結果

問題 No.1 道のショートカット
ユーザー dn6049949dn6049949
提出日時 2022-04-15 22:19:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 1,197 bytes
コンパイル時間 601 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,104 KB
最終ジャッジ日時 2024-12-25 01:10:49
合計ジャッジ時間 6,569 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
54,528 KB
testcase_01 AC 52 ms
54,400 KB
testcase_02 AC 54 ms
54,400 KB
testcase_03 AC 55 ms
54,400 KB
testcase_04 AC 55 ms
54,272 KB
testcase_05 AC 58 ms
54,144 KB
testcase_06 AC 52 ms
54,144 KB
testcase_07 AC 57 ms
54,400 KB
testcase_08 AC 142 ms
77,440 KB
testcase_09 AC 90 ms
70,016 KB
testcase_10 AC 134 ms
77,568 KB
testcase_11 AC 182 ms
78,848 KB
testcase_12 AC 192 ms
78,976 KB
testcase_13 AC 188 ms
78,848 KB
testcase_14 AC 55 ms
55,040 KB
testcase_15 AC 54 ms
54,272 KB
testcase_16 AC 77 ms
67,200 KB
testcase_17 AC 56 ms
54,656 KB
testcase_18 AC 56 ms
55,040 KB
testcase_19 AC 58 ms
55,040 KB
testcase_20 AC 128 ms
77,312 KB
testcase_21 AC 82 ms
67,200 KB
testcase_22 AC 64 ms
55,040 KB
testcase_23 AC 179 ms
78,080 KB
testcase_24 AC 197 ms
78,720 KB
testcase_25 AC 161 ms
77,696 KB
testcase_26 AC 127 ms
77,312 KB
testcase_27 AC 224 ms
79,104 KB
testcase_28 AC 52 ms
54,400 KB
testcase_29 AC 115 ms
76,672 KB
testcase_30 AC 77 ms
64,512 KB
testcase_31 AC 80 ms
67,712 KB
testcase_32 AC 146 ms
77,952 KB
testcase_33 AC 122 ms
77,696 KB
testcase_34 AC 183 ms
78,592 KB
testcase_35 AC 62 ms
61,056 KB
testcase_36 AC 95 ms
71,296 KB
testcase_37 AC 76 ms
63,488 KB
testcase_38 AC 56 ms
54,528 KB
testcase_39 AC 55 ms
54,784 KB
testcase_40 AC 63 ms
61,440 KB
testcase_41 AC 59 ms
54,656 KB
testcase_42 AC 55 ms
54,016 KB
testcase_43 AC 55 ms
54,528 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!usr/bin/env python3
from collections import defaultdict, deque
from heapq import heappush, heappop
from itertools import permutations, accumulate
import sys
import math
import bisect
def LI(): return [int(x) for x in sys.stdin.readline().split()]
def I(): return int(sys.stdin.readline())
def IR(n):
    return [I() for _ in range(n)]
def LIR(n):
    return [LI() for _ in range(n)]

sys.setrecursionlimit(1000000)
mod = 1000000007

def main():
    n = I()
    x = I()
    I()
    s = LI()
    t = LI()
    y = LI()
    m = LI()
    v = [[] for _ in range(n)]
    for a,b,c,d in zip(s,t,y,m):
        a -= 1
        b -= 1
        v[a].append((b,c,d))
    d = defaultdict(lambda : float("inf"))
    d[(0,x)] = 0
    q = [(0,0,x)]
    ans = float("inf")
    while q:
        dx,x,c = heappop(q)
        if dx > d[(x,c)]:
            continue
        if x == n-1 and dx < ans:
            ans = dx
        for y,cost,w in v[x]:
            nd = dx+w
            nc = c-cost
            if nc >= 0 and nd < d[(y,nc)]:
                d[(y,nc)] = nd
                heappush(q,(nd,y,nc))
    if ans == float("inf"):
        ans = -1
    print(ans)
    return


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