結果
問題 | No.1 道のショートカット |
ユーザー | kamiyomokikanu |
提出日時 | 2019-08-16 23:55:17 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,406 bytes |
コンパイル時間 | 156 ms |
コンパイル使用メモリ | 81,840 KB |
実行使用メモリ | 84,732 KB |
最終ジャッジ日時 | 2024-07-08 05:14:41 |
合計ジャッジ時間 | 16,059 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
61,424 KB |
testcase_01 | AC | 42 ms
62,140 KB |
testcase_02 | AC | 42 ms
61,712 KB |
testcase_03 | AC | 35 ms
54,592 KB |
testcase_04 | AC | 35 ms
55,608 KB |
testcase_05 | AC | 47 ms
61,448 KB |
testcase_06 | AC | 39 ms
54,132 KB |
testcase_07 | AC | 41 ms
60,912 KB |
testcase_08 | AC | 1,743 ms
77,616 KB |
testcase_09 | AC | 4,079 ms
77,508 KB |
testcase_10 | AC | 758 ms
76,932 KB |
testcase_11 | AC | 1,993 ms
77,620 KB |
testcase_12 | TLE | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
ソースコード
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]) 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() #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:queue.append(nt) #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))