結果

問題 No.1 道のショートカット
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-01-21 00:49:15
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,044 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,136 KB
実行使用メモリ 79,220 KB
最終ジャッジ日時 2024-07-08 05:20:41
合計ジャッジ時間 3,993 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
54,208 KB
testcase_01 AC 39 ms
54,328 KB
testcase_02 AC 38 ms
55,516 KB
testcase_03 AC 37 ms
54,840 KB
testcase_04 AC 37 ms
53,888 KB
testcase_05 AC 38 ms
54,712 KB
testcase_06 AC 35 ms
54,496 KB
testcase_07 AC 36 ms
54,200 KB
testcase_08 AC 82 ms
73,636 KB
testcase_09 AC 91 ms
74,988 KB
testcase_10 AC 68 ms
70,580 KB
testcase_11 AC 89 ms
72,980 KB
testcase_12 AC 137 ms
79,220 KB
testcase_13 AC 160 ms
78,712 KB
testcase_14 AC 51 ms
66,088 KB
testcase_15 RE -
testcase_16 WA -
testcase_17 AC 37 ms
55,044 KB
testcase_18 AC 62 ms
73,584 KB
testcase_19 AC 62 ms
72,472 KB
testcase_20 AC 63 ms
70,416 KB
testcase_21 WA -
testcase_22 AC 56 ms
69,872 KB
testcase_23 AC 100 ms
71,196 KB
testcase_24 AC 115 ms
73,484 KB
testcase_25 AC 62 ms
70,948 KB
testcase_26 AC 57 ms
68,736 KB
testcase_27 AC 122 ms
74,308 KB
testcase_28 AC 64 ms
70,620 KB
testcase_29 AC 60 ms
69,716 KB
testcase_30 AC 47 ms
66,232 KB
testcase_31 AC 51 ms
65,528 KB
testcase_32 AC 76 ms
72,668 KB
testcase_33 AC 66 ms
70,624 KB
testcase_34 AC 109 ms
71,992 KB
testcase_35 AC 46 ms
63,320 KB
testcase_36 AC 55 ms
68,168 KB
testcase_37 WA -
testcase_38 AC 42 ms
62,816 KB
testcase_39 WA -
testcase_40 AC 52 ms
66,652 KB
testcase_41 AC 41 ms
60,160 KB
testcase_42 AC 37 ms
54,120 KB
testcase_43 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

N = int(input())
C = int(input())
V = int(input())

Sori = list(map(int,input().split()))
Tori = list(map(int,input().split()))
Yori = list(map(int,input().split()))
Mori = list(map(int,input().split()))

dic = {}

for i in range(V):

    s = Sori[i]-1
    t = Tori[i]-1

    y = Yori[i]
    m = Mori[i]

    if s not in dic:
        dic[s] = []
    if t not in dic:
        dic[t] = []

    dic[s].append([t,y,m])
    dic[t].append([s,y,m])


lis = [[float("inf")] * (C+1) for i in range(N) ]
lis[0][0] = 0

q = deque([])
q.append([0,0])

while len(q) > 0:

    now = q.popleft()
    np = now[0]
    nc = now[1]

    for i in dic[np]:

        nexp = i[0]
        nexc = i[1]
        dis = i[2]

        if nc + nexc <= C:

            if lis[nexp][nc+nexc] > lis[np][nc] + dis:
                lis[nexp][nc+nexc] = lis[np][nc] + dis
                q.append([nexp,nc+nexc])

ans = float("inf")

for i in range(C+1):

    ans = min(ans , lis[-1][i])

if ans == float("inf"):
    print (-1)
else:
    print (ans)
0