結果

問題 No.1 道のショートカット
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2022-04-01 14:56:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 77 ms / 5,000 ms
コード長 810 bytes
コンパイル時間 439 ms
コンパイル使用メモリ 82,376 KB
実行使用メモリ 76,704 KB
最終ジャッジ日時 2024-11-19 07:42:30
合計ジャッジ時間 3,882 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,416 KB
testcase_01 AC 38 ms
54,372 KB
testcase_02 AC 39 ms
54,088 KB
testcase_03 AC 38 ms
53,408 KB
testcase_04 AC 37 ms
53,008 KB
testcase_05 AC 40 ms
52,944 KB
testcase_06 AC 37 ms
53,156 KB
testcase_07 AC 38 ms
52,872 KB
testcase_08 AC 62 ms
72,108 KB
testcase_09 AC 45 ms
62,908 KB
testcase_10 AC 56 ms
67,256 KB
testcase_11 AC 64 ms
72,384 KB
testcase_12 AC 72 ms
75,272 KB
testcase_13 AC 77 ms
76,704 KB
testcase_14 AC 36 ms
53,056 KB
testcase_15 AC 36 ms
53,152 KB
testcase_16 AC 39 ms
59,404 KB
testcase_17 AC 36 ms
53,060 KB
testcase_18 AC 38 ms
53,932 KB
testcase_19 AC 36 ms
54,168 KB
testcase_20 AC 43 ms
61,596 KB
testcase_21 AC 36 ms
54,036 KB
testcase_22 AC 39 ms
52,880 KB
testcase_23 AC 59 ms
70,288 KB
testcase_24 AC 55 ms
67,016 KB
testcase_25 AC 44 ms
61,892 KB
testcase_26 AC 38 ms
53,900 KB
testcase_27 AC 63 ms
72,300 KB
testcase_28 AC 36 ms
53,596 KB
testcase_29 AC 58 ms
68,512 KB
testcase_30 AC 45 ms
62,156 KB
testcase_31 AC 48 ms
63,736 KB
testcase_32 AC 54 ms
68,048 KB
testcase_33 AC 46 ms
63,268 KB
testcase_34 AC 73 ms
75,032 KB
testcase_35 AC 41 ms
60,440 KB
testcase_36 AC 47 ms
64,336 KB
testcase_37 AC 44 ms
62,480 KB
testcase_38 AC 38 ms
54,000 KB
testcase_39 AC 38 ms
54,328 KB
testcase_40 AC 39 ms
60,420 KB
testcase_41 AC 39 ms
54,776 KB
testcase_42 AC 36 ms
53,240 KB
testcase_43 AC 37 ms
53,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heappush,heappop
n=int(input())
c=int(input())
v=int(input())
ss=list(map(int,input().split()))
tt=list(map(int,input().split()))
yy=list(map(int,input().split()))
mm=list(map(int,input().split()))
g=[[] for _ in range(n)]
for s,t,y,m in zip(ss,tt,yy,mm):
    s-=1
    t-=1
    g[s].append([t,y,m])
inf=float('inf')
dp=[[inf]*(c+1) for _ in range(n)]
# dp[i][c]:残金cの状態で街iに到達する最小時間
q=[[0,0,c]]# 経過時間、街idx、残金
while q:
    tm,ct,mn=heappop(q)
    if dp[ct][mn]<tm:continue
    for nct,dmn,dtm in g[ct]:
        if mn-dmn<0:continue
        if dp[nct][dmn]>tm+dtm:
            dp[nct][dmn]=tm+dtm
            heappush(q,[tm+dtm,nct,mn-dmn])
ans=inf
for mn in range(c+1):
    ans=min(ans,dp[-1][mn])
if ans!=inf:
    print(ans)
else:
    print(-1)
0