結果

問題 No.1 道のショートカット
ユーザー ryusukeryusuke
提出日時 2022-01-28 19:58:40
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,184 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 64,500 KB
最終ジャッジ日時 2024-06-09 12:34:56
合計ジャッジ時間 3,668 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
52,096 KB
testcase_01 AC 44 ms
52,096 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 40 ms
52,480 KB
testcase_04 AC 41 ms
52,096 KB
testcase_05 AC 41 ms
52,224 KB
testcase_06 AC 40 ms
52,480 KB
testcase_07 AC 41 ms
52,352 KB
testcase_08 AC 50 ms
61,184 KB
testcase_09 AC 45 ms
58,752 KB
testcase_10 AC 47 ms
60,160 KB
testcase_11 AC 50 ms
61,056 KB
testcase_12 WA -
testcase_13 AC 50 ms
61,696 KB
testcase_14 WA -
testcase_15 AC 41 ms
52,480 KB
testcase_16 WA -
testcase_17 AC 41 ms
52,096 KB
testcase_18 AC 40 ms
52,224 KB
testcase_19 AC 41 ms
52,352 KB
testcase_20 AC 45 ms
58,112 KB
testcase_21 AC 40 ms
52,352 KB
testcase_22 AC 40 ms
52,608 KB
testcase_23 AC 49 ms
61,184 KB
testcase_24 AC 49 ms
60,928 KB
testcase_25 AC 43 ms
57,984 KB
testcase_26 AC 41 ms
52,480 KB
testcase_27 AC 47 ms
61,056 KB
testcase_28 AC 40 ms
52,096 KB
testcase_29 WA -
testcase_30 AC 44 ms
58,368 KB
testcase_31 AC 47 ms
59,520 KB
testcase_32 WA -
testcase_33 AC 45 ms
58,752 KB
testcase_34 WA -
testcase_35 AC 45 ms
58,880 KB
testcase_36 WA -
testcase_37 AC 46 ms
59,904 KB
testcase_38 AC 39 ms
52,224 KB
testcase_39 AC 39 ms
52,352 KB
testcase_40 WA -
testcase_41 AC 41 ms
52,736 KB
testcase_42 AC 42 ms
51,968 KB
testcase_43 AC 40 ms
52,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush, heappop, heapify
import sys
input = sys.stdin.readline

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()))

g = [[] for _ in range(n)]

for i in range(v):
    s[i] -= 1
    t[i] -= 1
    g[s[i]].append((m[i], y[i], t[i])) # 時間・コスト・行き先
#print('g:のグラフ')
#print(*g, sep='\n')

INF = 10 ** 18
dist = [INF] * n # かかる時間
cost = [INF] * n # 必要なコスト
dist[0] = 0
cost[0] = 0
q = [(0, 0, 0)] # 時間・コスト・今いる場所
heapify(q)

while q:
    pre_time, pre_cost, pre_ind = heappop(q)
    for nxt_time, nxt_cost, nxt_ind in g[pre_ind]:
        if dist[nxt_ind] <= dist[pre_ind] + nxt_time: continue
        if cost[pre_ind] + nxt_cost > c: continue
        dist[nxt_ind] = dist[pre_ind] + nxt_time
        cost[nxt_ind] = cost[pre_ind] + nxt_cost
        heappush(q, (dist[nxt_ind], cost[nxt_ind], nxt_ind))
        #print(dist)
        #print(cost)
        #print(q)
        #print()

##print(dist)
#print(cost)
print(dist[-1]) if dist[-1] != INF else print(-1)
0