結果

問題 No.1 道のショートカット
ユーザー rlangevinrlangevin
提出日時 2023-11-17 12:30:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 726 ms / 5,000 ms
コード長 1,159 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 84,352 KB
最終ジャッジ日時 2024-09-26 05:22:02
合計ジャッジ時間 6,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
57,472 KB
testcase_01 AC 38 ms
57,856 KB
testcase_02 AC 39 ms
57,600 KB
testcase_03 AC 35 ms
52,608 KB
testcase_04 AC 34 ms
52,224 KB
testcase_05 AC 37 ms
57,728 KB
testcase_06 AC 35 ms
52,480 KB
testcase_07 AC 39 ms
57,984 KB
testcase_08 AC 257 ms
83,584 KB
testcase_09 AC 82 ms
70,912 KB
testcase_10 AC 107 ms
73,472 KB
testcase_11 AC 116 ms
74,228 KB
testcase_12 AC 726 ms
84,352 KB
testcase_13 AC 670 ms
84,352 KB
testcase_14 AC 49 ms
63,944 KB
testcase_15 AC 40 ms
58,368 KB
testcase_16 AC 63 ms
67,072 KB
testcase_17 AC 44 ms
60,032 KB
testcase_18 AC 51 ms
64,000 KB
testcase_19 AC 54 ms
64,896 KB
testcase_20 AC 101 ms
70,400 KB
testcase_21 AC 72 ms
67,840 KB
testcase_22 AC 54 ms
64,640 KB
testcase_23 AC 126 ms
82,696 KB
testcase_24 AC 154 ms
83,200 KB
testcase_25 AC 114 ms
72,704 KB
testcase_26 AC 83 ms
69,888 KB
testcase_27 AC 281 ms
82,304 KB
testcase_28 AC 43 ms
61,568 KB
testcase_29 AC 58 ms
70,144 KB
testcase_30 AC 49 ms
64,384 KB
testcase_31 AC 54 ms
67,584 KB
testcase_32 AC 218 ms
81,408 KB
testcase_33 AC 111 ms
74,496 KB
testcase_34 AC 139 ms
81,280 KB
testcase_35 AC 40 ms
62,356 KB
testcase_36 AC 58 ms
67,968 KB
testcase_37 AC 48 ms
64,640 KB
testcase_38 AC 45 ms
62,208 KB
testcase_39 AC 52 ms
65,152 KB
testcase_40 AC 54 ms
63,744 KB
testcase_41 AC 43 ms
61,440 KB
testcase_42 AC 38 ms
57,856 KB
testcase_43 AC 38 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
inf = 10 ** 18

def dijkstra2(N):
    ind = 0
    D = [inf] * (N)
    seen = [False] * (N)
    D[0] = 0
    while True:
        minv = inf
        ind = N + 1
        for i in range(N):
            if seen[i]:
                continue
            if D[i] < minv:
                ind = i
                minv = D[i]
        if ind == N + 1:
            break
        if ind // (C + 1) == N - 1:
            return D
        seen[ind] = True
        for u, d in G[ind]:
            if seen[u]:
                continue
            D[u] = min(D[u], D[ind] + d)
    return D

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()))
N2 = N * (C + 1)
G = [[] for i in range(N2)]
for i in range(V):
    s, t = S[i] - 1, T[i] - 1
    for c in range(C + 1):
        if c + Y[i] <= C:
            G[s * (C + 1) + c].append((t * (C + 1) + c + Y[i], M[i]))

D = dijkstra2(N2)
ans = inf
for i in range(C + 1):
    ans = min(ans, D[(N - 1) * (C + 1) + i])

print(ans) if ans != inf else print(-1)
0