結果

問題 No.1 道のショートカット
ユーザー 👑 SPD_9X2SPD_9X2
提出日時 2020-01-21 01:12:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 1,033 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 71,040 KB
最終ジャッジ日時 2024-07-20 16:45:11
合計ジャッジ時間 3,590 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,760 KB
testcase_01 AC 41 ms
53,376 KB
testcase_02 AC 41 ms
53,632 KB
testcase_03 AC 41 ms
53,760 KB
testcase_04 AC 41 ms
53,632 KB
testcase_05 AC 42 ms
53,504 KB
testcase_06 AC 40 ms
54,144 KB
testcase_07 AC 42 ms
53,888 KB
testcase_08 AC 65 ms
68,096 KB
testcase_09 AC 53 ms
64,000 KB
testcase_10 AC 63 ms
67,712 KB
testcase_11 AC 74 ms
69,248 KB
testcase_12 AC 79 ms
70,784 KB
testcase_13 AC 77 ms
71,040 KB
testcase_14 AC 43 ms
53,888 KB
testcase_15 AC 46 ms
53,760 KB
testcase_16 AC 54 ms
61,312 KB
testcase_17 AC 45 ms
53,632 KB
testcase_18 AC 43 ms
54,016 KB
testcase_19 AC 42 ms
54,144 KB
testcase_20 AC 62 ms
67,200 KB
testcase_21 AC 51 ms
60,800 KB
testcase_22 AC 43 ms
54,272 KB
testcase_23 AC 80 ms
70,656 KB
testcase_24 AC 79 ms
70,016 KB
testcase_25 AC 62 ms
67,200 KB
testcase_26 AC 60 ms
65,152 KB
testcase_27 AC 80 ms
70,784 KB
testcase_28 AC 43 ms
53,888 KB
testcase_29 AC 65 ms
68,096 KB
testcase_30 AC 55 ms
64,768 KB
testcase_31 AC 57 ms
64,000 KB
testcase_32 AC 64 ms
67,584 KB
testcase_33 AC 57 ms
65,408 KB
testcase_34 AC 79 ms
70,016 KB
testcase_35 AC 47 ms
60,544 KB
testcase_36 AC 57 ms
65,536 KB
testcase_37 AC 51 ms
62,720 KB
testcase_38 AC 42 ms
53,888 KB
testcase_39 AC 42 ms
53,760 KB
testcase_40 AC 48 ms
60,928 KB
testcase_41 AC 43 ms
53,888 KB
testcase_42 AC 42 ms
53,760 KB
testcase_43 AC 41 ms
53,504 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] = []

    dic[s].append([t,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")
#print (lis[-1])

for i in range(C+1):

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

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