結果

問題 No.1 道のショートカット
ユーザー syunsuke1024syunsuke1024
提出日時 2020-05-05 10:53:00
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 836 bytes
コンパイル時間 177 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 87,572 KB
最終ジャッジ日時 2024-07-08 05:23:06
合計ジャッジ時間 4,559 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,112 KB
testcase_01 AC 34 ms
53,808 KB
testcase_02 AC 34 ms
53,256 KB
testcase_03 AC 33 ms
53,332 KB
testcase_04 AC 34 ms
52,736 KB
testcase_05 AC 33 ms
53,232 KB
testcase_06 AC 36 ms
52,644 KB
testcase_07 AC 35 ms
53,248 KB
testcase_08 AC 91 ms
77,172 KB
testcase_09 AC 54 ms
67,244 KB
testcase_10 AC 94 ms
76,568 KB
testcase_11 AC 115 ms
77,840 KB
testcase_12 AC 142 ms
78,264 KB
testcase_13 AC 122 ms
77,668 KB
testcase_14 AC 38 ms
59,744 KB
testcase_15 AC 36 ms
59,648 KB
testcase_16 AC 40 ms
61,164 KB
testcase_17 AC 35 ms
58,408 KB
testcase_18 AC 38 ms
59,036 KB
testcase_19 AC 38 ms
58,588 KB
testcase_20 AC 85 ms
76,804 KB
testcase_21 AC 51 ms
64,620 KB
testcase_22 AC 41 ms
60,196 KB
testcase_23 AC 348 ms
87,572 KB
testcase_24 AC 308 ms
86,340 KB
testcase_25 AC 105 ms
76,980 KB
testcase_26 AC 82 ms
76,656 KB
testcase_27 AC 204 ms
81,732 KB
testcase_28 AC 36 ms
58,332 KB
testcase_29 AC 85 ms
76,936 KB
testcase_30 AC 56 ms
67,376 KB
testcase_31 AC 87 ms
77,368 KB
testcase_32 AC 97 ms
77,364 KB
testcase_33 AC 79 ms
76,744 KB
testcase_34 AC 123 ms
77,908 KB
testcase_35 AC 48 ms
65,360 KB
testcase_36 AC 69 ms
75,232 KB
testcase_37 AC 50 ms
66,024 KB
testcase_38 AC 37 ms
58,608 KB
testcase_39 AC 38 ms
59,592 KB
testcase_40 WA -
testcase_41 AC 34 ms
54,092 KB
testcase_42 AC 33 ms
53,088 KB
testcase_43 AC 36 ms
58,696 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

S=list(map(int,input().split()))
T=list(map(int,input().split()))
Cost=list(map(int,input().split()))
Time=list(map(int,input().split()))

L=[[]for i in range(N+1)]
for i in range(V):
    L[S[i]].append([Time[i],Cost[i],T[i]])

DP=[[10**9 for i in range(C+1)]for j in range(N+1)]

DP[1][0]=0
#print(DP)

import heapq
Q=[]
for time,cost,t in L[1]:
    if cost<=C:
        Q.append((time,cost,t))

heapq.heapify(Q)
for i in range(10**7):
    if len(Q)==0:
        break
    time,cost,t=heapq.heappop(Q)
    if DP[t][cost]==10**9:
        DP[t][cost]=time
        for fortime,forcost,fort in L[t]:
            if cost+forcost<=C and DP[t][cost+forcost]==10**9:
                heapq.heappush(Q,(time+fortime,cost+forcost,fort))
if min(DP[-1])==10**9:
    print(-1)
else:
    print(min(DP[-1]))
0