結果

問題 No.1 道のショートカット
ユーザー iseeisee
提出日時 2022-12-03 20:38:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 1,254 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 81,968 KB
実行使用メモリ 77,288 KB
最終ジャッジ日時 2024-10-11 00:13:29
合計ジャッジ時間 4,600 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,736 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 39 ms
52,608 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 39 ms
52,736 KB
testcase_06 AC 39 ms
53,120 KB
testcase_07 AC 39 ms
53,116 KB
testcase_08 AC 108 ms
76,928 KB
testcase_09 AC 63 ms
67,840 KB
testcase_10 AC 88 ms
76,840 KB
testcase_11 AC 108 ms
76,992 KB
testcase_12 AC 125 ms
77,084 KB
testcase_13 AC 124 ms
77,200 KB
testcase_14 AC 40 ms
52,992 KB
testcase_15 AC 40 ms
52,608 KB
testcase_16 AC 53 ms
63,872 KB
testcase_17 AC 41 ms
52,864 KB
testcase_18 AC 41 ms
53,248 KB
testcase_19 AC 41 ms
52,952 KB
testcase_20 AC 89 ms
76,800 KB
testcase_21 AC 54 ms
63,232 KB
testcase_22 AC 42 ms
53,248 KB
testcase_23 AC 111 ms
76,860 KB
testcase_24 AC 117 ms
77,148 KB
testcase_25 AC 95 ms
76,416 KB
testcase_26 AC 74 ms
72,064 KB
testcase_27 AC 130 ms
77,288 KB
testcase_28 AC 39 ms
52,480 KB
testcase_29 AC 78 ms
74,112 KB
testcase_30 AC 51 ms
62,720 KB
testcase_31 AC 55 ms
64,256 KB
testcase_32 AC 90 ms
76,800 KB
testcase_33 AC 85 ms
76,884 KB
testcase_34 AC 111 ms
76,792 KB
testcase_35 AC 43 ms
59,648 KB
testcase_36 AC 70 ms
70,656 KB
testcase_37 AC 49 ms
61,824 KB
testcase_38 AC 39 ms
52,736 KB
testcase_39 AC 41 ms
53,376 KB
testcase_40 AC 45 ms
59,776 KB
testcase_41 AC 40 ms
52,864 KB
testcase_42 AC 39 ms
52,480 KB
testcase_43 AC 38 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda: sys.stdin.readline().rstrip()

import heapq

def main():
    # 入力
    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()))  # その道の長さ
    # 計算・出力
    edges = [[] for _ in range(N)]  # 辺の情報 [次の街, 通行料, 距離]
    for i in range(V):
        edges[S[i]-1].append([T[i]-1, Y[i], M[i]])
    d = [[10**10]*(C+1) for _ in range(N)]
    # d[i][j] := 街 i に 料金 j でたどり着く最短距離
    d[0][0] = 0
    q = [[0, 0, 0]]  # [総距離, 街, 料金]
    while q:
        prevD, prevV, prevC = heapq.heappop(q)
        if d[prevV][prevC] < prevD: continue
        for nextV, cost, dist in edges[prevV]:
            nextD = prevD + dist
            nextC = prevC + cost
            if nextC <= C and nextD < d[nextV][nextC]:
                d[nextV][nextC] = nextD
                heapq.heappush(q, [nextD, nextV, nextC])
    ans = min(d[-1])
    print(ans if ans < 10**10 else -1)

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