結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,760 KB
testcase_01 AC 37 ms
54,016 KB
testcase_02 AC 39 ms
53,504 KB
testcase_03 AC 40 ms
53,760 KB
testcase_04 AC 38 ms
53,632 KB
testcase_05 AC 39 ms
53,504 KB
testcase_06 AC 39 ms
53,504 KB
testcase_07 AC 37 ms
53,632 KB
testcase_08 AC 82 ms
73,344 KB
testcase_09 AC 96 ms
74,496 KB
testcase_10 AC 65 ms
69,632 KB
testcase_11 AC 87 ms
72,576 KB
testcase_12 AC 142 ms
79,336 KB
testcase_13 AC 157 ms
78,720 KB
testcase_14 AC 51 ms
65,280 KB
testcase_15 AC 38 ms
53,632 KB
testcase_16 WA -
testcase_17 AC 38 ms
54,016 KB
testcase_18 AC 62 ms
71,552 KB
testcase_19 AC 63 ms
70,400 KB
testcase_20 AC 65 ms
70,016 KB
testcase_21 WA -
testcase_22 AC 58 ms
68,992 KB
testcase_23 AC 98 ms
70,528 KB
testcase_24 AC 113 ms
71,424 KB
testcase_25 AC 64 ms
70,016 KB
testcase_26 AC 59 ms
68,224 KB
testcase_27 AC 107 ms
74,472 KB
testcase_28 AC 60 ms
70,144 KB
testcase_29 AC 61 ms
68,864 KB
testcase_30 AC 48 ms
64,128 KB
testcase_31 AC 53 ms
64,640 KB
testcase_32 AC 78 ms
71,936 KB
testcase_33 AC 68 ms
69,888 KB
testcase_34 AC 116 ms
71,552 KB
testcase_35 AC 47 ms
63,360 KB
testcase_36 AC 57 ms
66,688 KB
testcase_37 WA -
testcase_38 AC 43 ms
61,568 KB
testcase_39 WA -
testcase_40 AC 53 ms
66,048 KB
testcase_41 AC 42 ms
59,776 KB
testcase_42 AC 39 ms
53,248 KB
testcase_43 AC 37 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

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]

    if np not in dic:
        continue

    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