結果

問題 No.1 道のショートカット
ユーザー brthyyjpbrthyyjp
提出日時 2021-10-30 02:42:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 184 ms / 5,000 ms
コード長 1,087 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 87,156 KB
最終ジャッジ日時 2024-10-07 13:18:02
合計ジャッジ時間 4,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,504 KB
testcase_01 AC 39 ms
54,116 KB
testcase_02 AC 40 ms
53,560 KB
testcase_03 AC 39 ms
54,156 KB
testcase_04 AC 40 ms
54,100 KB
testcase_05 AC 40 ms
53,868 KB
testcase_06 AC 40 ms
53,144 KB
testcase_07 AC 40 ms
53,196 KB
testcase_08 AC 135 ms
84,384 KB
testcase_09 AC 69 ms
73,624 KB
testcase_10 AC 106 ms
78,980 KB
testcase_11 AC 121 ms
80,592 KB
testcase_12 AC 184 ms
87,156 KB
testcase_13 AC 177 ms
86,940 KB
testcase_14 AC 53 ms
65,032 KB
testcase_15 AC 44 ms
61,224 KB
testcase_16 AC 58 ms
67,532 KB
testcase_17 AC 47 ms
62,268 KB
testcase_18 AC 53 ms
64,896 KB
testcase_19 AC 53 ms
65,008 KB
testcase_20 AC 97 ms
78,332 KB
testcase_21 AC 65 ms
70,636 KB
testcase_22 AC 53 ms
64,960 KB
testcase_23 AC 136 ms
83,744 KB
testcase_24 AC 142 ms
85,680 KB
testcase_25 AC 114 ms
80,192 KB
testcase_26 AC 97 ms
78,324 KB
testcase_27 AC 140 ms
83,040 KB
testcase_28 AC 50 ms
62,508 KB
testcase_29 AC 82 ms
77,668 KB
testcase_30 AC 53 ms
63,668 KB
testcase_31 AC 59 ms
68,564 KB
testcase_32 AC 122 ms
82,512 KB
testcase_33 AC 99 ms
80,312 KB
testcase_34 AC 132 ms
82,616 KB
testcase_35 AC 49 ms
63,104 KB
testcase_36 AC 69 ms
71,656 KB
testcase_37 AC 53 ms
64,596 KB
testcase_38 AC 52 ms
64,476 KB
testcase_39 AC 55 ms
66,796 KB
testcase_40 AC 52 ms
64,576 KB
testcase_41 AC 48 ms
62,180 KB
testcase_42 AC 40 ms
53,908 KB
testcase_43 AC 45 ms
60,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
INF = 10**18
def dijkstra(s, edge):
    n = len(edge)
    dist = [INF]*n
    dist[s] = 0
    edgelist = []
    heapq.heappush(edgelist,(dist[s], s))
    while edgelist:
        minedge = heapq.heappop(edgelist)
        if dist[minedge[1]] < minedge[0]:
            continue
        v = minedge[1]
        for e in edge[v]:
            if dist[e[1]] > dist[v]+e[0]:
                dist[e[1]] = dist[v]+e[0]
                heapq.heappush(edgelist,(dist[e[1]], e[1]))
    return dist

n = int(input())
c = int(input())
a = 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()))

N = n*(c+1)
edge = [[] for i in range(N)]
for i in range(a):
    s, t, y, m = S[i], T[i], Y[i], M[i]
    s, t = s-1, t-1
    for j in range(c+1):
        if j+y <= c:
            edge[n*j+s].append((m, n*(j+y)+t))

dist = dijkstra(0, edge)
ans = INF
for i in range(N):
    cost, v = divmod(i, n)
    if v == n-1:
        ans = min(dist[i], ans)
if ans < INF:
    print(ans)
else:
    print(-1)
0