結果

問題 No.1 道のショートカット
ユーザー kamiyomokikanukamiyomokikanu
提出日時 2019-08-16 23:58:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,504 bytes
コンパイル時間 192 ms
コンパイル使用メモリ 81,844 KB
実行使用メモリ 77,396 KB
最終ジャッジ日時 2024-07-08 05:14:47
合計ジャッジ時間 5,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
62,076 KB
testcase_01 AC 42 ms
61,476 KB
testcase_02 AC 45 ms
61,844 KB
testcase_03 AC 35 ms
54,668 KB
testcase_04 AC 35 ms
55,364 KB
testcase_05 AC 43 ms
61,648 KB
testcase_06 AC 38 ms
54,556 KB
testcase_07 AC 38 ms
60,312 KB
testcase_08 AC 118 ms
75,052 KB
testcase_09 AC 416 ms
76,696 KB
testcase_10 AC 79 ms
72,328 KB
testcase_11 AC 91 ms
73,796 KB
testcase_12 AC 239 ms
77,324 KB
testcase_13 AC 282 ms
77,396 KB
testcase_14 AC 55 ms
67,084 KB
testcase_15 AC 38 ms
59,492 KB
testcase_16 WA -
testcase_17 AC 39 ms
59,800 KB
testcase_18 AC 56 ms
68,100 KB
testcase_19 AC 67 ms
69,724 KB
testcase_20 AC 69 ms
69,524 KB
testcase_21 WA -
testcase_22 AC 61 ms
69,128 KB
testcase_23 AC 111 ms
74,864 KB
testcase_24 AC 117 ms
72,628 KB
testcase_25 AC 79 ms
68,076 KB
testcase_26 AC 69 ms
67,288 KB
testcase_27 AC 112 ms
72,956 KB
testcase_28 AC 51 ms
65,680 KB
testcase_29 AC 65 ms
71,260 KB
testcase_30 AC 53 ms
67,380 KB
testcase_31 AC 55 ms
67,892 KB
testcase_32 AC 106 ms
70,984 KB
testcase_33 AC 74 ms
68,128 KB
testcase_34 AC 119 ms
73,028 KB
testcase_35 AC 56 ms
69,260 KB
testcase_36 AC 63 ms
70,260 KB
testcase_37 WA -
testcase_38 AC 48 ms
64,440 KB
testcase_39 WA -
testcase_40 AC 52 ms
67,372 KB
testcase_41 AC 47 ms
65,284 KB
testcase_42 AC 36 ms
54,788 KB
testcase_43 AC 39 ms
60,088 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])
    l[pi[1]].append(pi[0])
    lw[pi[0]].append(pi[2])
    lw[pi[1]].append(pi[2])
    lt[pi[0]].append(pi[3])
    lt[pi[1]].append(pi[3])

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

queue=deque([1])
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()
    data[n]=-1
    #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))
        for j in range(C+1):
            if dp[n][j]!=-1:
                tw=j+ntw
                tt=dp[n][j]+ntt
                #print(str(tw)+"-"+str(tt))
                if tw>C:continue
                if dp[nt][tw]==-1 or tt<dp[nt][tw]:
                    dp[nt][tw]=tt
                    f=True
        if f and data[nt]==-1:
            queue.append(nt)
            data[nt]=1
#print(dp)

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

print (str(ans))
0