結果

問題 No.1 道のショートカット
ユーザー kohei2019kohei2019
提出日時 2021-01-11 20:41:11
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 226 ms / 5,000 ms
コード長 729 bytes
コンパイル時間 101 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-11-21 09:24:27
合計ジャッジ時間 4,495 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 28 ms
10,880 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 174 ms
10,880 KB
testcase_09 AC 100 ms
10,880 KB
testcase_10 AC 73 ms
11,008 KB
testcase_11 AC 96 ms
10,880 KB
testcase_12 AC 222 ms
11,136 KB
testcase_13 AC 226 ms
11,136 KB
testcase_14 AC 40 ms
10,752 KB
testcase_15 AC 29 ms
10,752 KB
testcase_16 AC 55 ms
10,752 KB
testcase_17 AC 29 ms
10,624 KB
testcase_18 AC 37 ms
10,752 KB
testcase_19 AC 45 ms
10,880 KB
testcase_20 AC 53 ms
10,752 KB
testcase_21 AC 58 ms
10,752 KB
testcase_22 AC 43 ms
10,752 KB
testcase_23 AC 156 ms
11,008 KB
testcase_24 AC 183 ms
10,752 KB
testcase_25 AC 81 ms
10,752 KB
testcase_26 AC 61 ms
10,624 KB
testcase_27 AC 142 ms
11,008 KB
testcase_28 AC 31 ms
10,752 KB
testcase_29 AC 52 ms
10,752 KB
testcase_30 AC 33 ms
10,752 KB
testcase_31 AC 46 ms
10,752 KB
testcase_32 AC 128 ms
10,752 KB
testcase_33 AC 99 ms
10,880 KB
testcase_34 AC 150 ms
10,752 KB
testcase_35 AC 33 ms
10,752 KB
testcase_36 AC 49 ms
10,880 KB
testcase_37 AC 34 ms
10,624 KB
testcase_38 AC 32 ms
10,752 KB
testcase_39 AC 49 ms
10,752 KB
testcase_40 AC 34 ms
10,880 KB
testcase_41 AC 31 ms
10,752 KB
testcase_42 AC 28 ms
10,752 KB
testcase_43 AC 29 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#dp[j][k] = 町jに所持金k円で行く最短時間
N = int(input())
C = int(input())
V = int(input())
lsS = list(map(int,input().split()))
lsT = list(map(int,input().split()))
lsY = list(map(int,input().split()))
lsM = list(map(int,input().split()))
lsedge = []
for i in range(V):
    lsedge.append((lsS[i],lsT[i],lsY[i],lsM[i]))
lsedge.sort()
dp = [[float('INF')]*(C+1) for i in range(N+1) ]
dp[1][C] = 0
for i in range(1,V+1):
    from1 = lsedge[i-1][0]
    to = lsedge[i-1][1]
    cost = lsedge[i-1][2]
    time = lsedge[i-1][3]
    for k in range(C+1):
        if k - cost >= 0:
            dp[to][k-cost] = min(dp[to][k-cost],dp[from1][k]+time)
if min(dp[N]) == float('INF'):
    print(-1)
else:
    print(min(dp[N]))
0