結果

問題 No.1 道のショートカット
ユーザー akasia_midoriakasia_midori
提出日時 2022-05-03 10:53:40
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 989 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 82,732 KB
実行使用メモリ 74,484 KB
最終ジャッジ日時 2024-07-02 12:59:18
合計ジャッジ時間 3,544 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,520 KB
testcase_01 AC 39 ms
53,912 KB
testcase_02 AC 38 ms
52,752 KB
testcase_03 AC 40 ms
53,092 KB
testcase_04 AC 39 ms
52,764 KB
testcase_05 AC 40 ms
54,128 KB
testcase_06 AC 40 ms
53,476 KB
testcase_07 AC 39 ms
53,940 KB
testcase_08 AC 58 ms
69,072 KB
testcase_09 AC 47 ms
63,184 KB
testcase_10 AC 49 ms
64,388 KB
testcase_11 AC 58 ms
68,360 KB
testcase_12 AC 57 ms
70,524 KB
testcase_13 AC 58 ms
70,492 KB
testcase_14 AC 40 ms
54,404 KB
testcase_15 RE -
testcase_16 AC 45 ms
60,784 KB
testcase_17 RE -
testcase_18 AC 40 ms
54,816 KB
testcase_19 AC 40 ms
53,256 KB
testcase_20 AC 43 ms
60,300 KB
testcase_21 AC 40 ms
54,792 KB
testcase_22 AC 39 ms
54,192 KB
testcase_23 AC 69 ms
74,484 KB
testcase_24 AC 59 ms
69,140 KB
testcase_25 AC 43 ms
60,660 KB
testcase_26 AC 40 ms
53,688 KB
testcase_27 AC 59 ms
70,576 KB
testcase_28 AC 38 ms
53,876 KB
testcase_29 AC 58 ms
69,480 KB
testcase_30 AC 44 ms
60,424 KB
testcase_31 AC 48 ms
62,812 KB
testcase_32 AC 46 ms
62,528 KB
testcase_33 AC 46 ms
61,800 KB
testcase_34 AC 59 ms
69,548 KB
testcase_35 AC 50 ms
63,984 KB
testcase_36 AC 48 ms
63,504 KB
testcase_37 AC 48 ms
62,752 KB
testcase_38 AC 40 ms
53,664 KB
testcase_39 AC 39 ms
53,092 KB
testcase_40 AC 45 ms
61,988 KB
testcase_41 AC 40 ms
54,460 KB
testcase_42 RE -
testcase_43 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

def one_str():
    return input()

def many_int():
    return list(map(int, input().split()))

import heapq

input_count = 0
N = int(input())
C = int(input())
V = int(input())

S = many_int()
T = many_int()
Y = many_int()
M = many_int()

G = {i:[] for i in range(V)}
temp_G = {i:set([]) for i in range(V)}

for i in range(V):
    temp_G[S[i]-1].add(f"{T[i]-1}_{M[i]}_{Y[i]}")
    
for k, v in temp_G.items():
    
    for vv in v:
        t,m,y = vv.split("_")
        G[k].append((int(t), int(m), int(y)))

G

q = [[0,0,0]]

mins = 10**10
while q:
    all_minute, all_cost, now_node = heapq.heappop(q)
    if now_node == (N-1):
        mins = min(mins, all_minute)
        break
        continue
    
    for next_node, next_minute, next_cost in G[now_node]:
        if (all_cost + next_cost) > C:
            continue
        else:
            heapq.heappush(q, (all_minute+next_minute, all_cost+next_cost, next_node))
            

if mins == 10**10:
    print(-1)
else:
    print(mins)
0