結果

問題 No.1 道のショートカット
ユーザー kamiyomokikanukamiyomokikanu
提出日時 2019-08-17 00:13:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 404 ms / 5,000 ms
コード長 1,362 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,520 KB
最終ジャッジ日時 2024-07-20 16:41:30
合計ジャッジ時間 4,804 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
11,008 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 31 ms
11,008 KB
testcase_03 AC 31 ms
11,008 KB
testcase_04 AC 31 ms
11,008 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 31 ms
11,008 KB
testcase_07 AC 31 ms
11,008 KB
testcase_08 AC 62 ms
11,136 KB
testcase_09 AC 37 ms
11,136 KB
testcase_10 AC 59 ms
10,880 KB
testcase_11 AC 130 ms
11,136 KB
testcase_12 AC 233 ms
11,520 KB
testcase_13 AC 226 ms
11,264 KB
testcase_14 AC 31 ms
10,880 KB
testcase_15 AC 31 ms
11,008 KB
testcase_16 AC 34 ms
11,008 KB
testcase_17 AC 31 ms
11,008 KB
testcase_18 AC 32 ms
10,880 KB
testcase_19 AC 31 ms
11,008 KB
testcase_20 AC 44 ms
10,880 KB
testcase_21 AC 34 ms
11,008 KB
testcase_22 AC 31 ms
11,008 KB
testcase_23 AC 404 ms
11,008 KB
testcase_24 AC 370 ms
10,880 KB
testcase_25 AC 67 ms
11,008 KB
testcase_26 AC 46 ms
11,008 KB
testcase_27 AC 264 ms
11,008 KB
testcase_28 AC 30 ms
10,752 KB
testcase_29 AC 78 ms
11,136 KB
testcase_30 AC 37 ms
11,008 KB
testcase_31 AC 77 ms
10,880 KB
testcase_32 AC 89 ms
11,264 KB
testcase_33 AC 55 ms
11,008 KB
testcase_34 AC 301 ms
11,264 KB
testcase_35 AC 33 ms
10,880 KB
testcase_36 AC 48 ms
11,136 KB
testcase_37 AC 39 ms
11,136 KB
testcase_38 AC 30 ms
10,880 KB
testcase_39 AC 32 ms
11,008 KB
testcase_40 AC 33 ms
10,880 KB
testcase_41 AC 31 ms
10,880 KB
testcase_42 AC 31 ms
10,880 KB
testcase_43 AC 31 ms
11,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import deque

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

#print(S)
#print(T)
#print(Y)
#print(M)

p=[]
for i in range(V):
    p.append([S[i],T[i],Y[i],M[i]])

#print (p)

l=[[] for i in range(N+1)]
lw=[[] for i in range(N+1)]
lt=[[] for i in range(N+1)]
for pi in p:
    l[pi[0]].append(pi[1])
    lw[pi[0]].append(pi[2])
    lt[pi[0]].append(pi[3])

#print(l)
#print(lw)
#print(lt)

queue=deque([1])
queue2=deque([0])

data=[-1 for i in range(N+1)]
dp=[[-1 for i in range(C+1)] for j in range(N+1)]
dp[1][0]=0

while len(queue) > 0:
    n=queue.popleft()
    c=queue2.popleft()
    #print (n)
    f=False
    for i in range(len(l[n])):
        nt=l[n][i]
        ntw=lw[n][i]
        ntt=lt[n][i]
        #print(str(nt)+","+str(ntw)+","+str(ntt))
        if dp[n][c]!=-1:
            tw=c+ntw
            tt=dp[n][c]+ntt
            #print(str(tw)+"-"+str(tt))
            if tw>C:continue
            if dp[nt][tw]==-1 or tt<dp[nt][tw]:
                dp[nt][tw]=tt
                queue.append(nt)
                queue2.append(tw)
#print(dp)

ans=-1
for dpi in dp[N]:
    if(dpi!=-1):
        if(ans==-1):
            ans=dpi
        else:
            ans=min(ans,dpi)
#print (dp[N])
print (str(ans))
0