結果

問題 No.1 道のショートカット
ユーザー Yuta123456Yuta123456
提出日時 2020-05-21 19:36:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 810 bytes
コンパイル時間 324 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,136 KB
最終ジャッジ日時 2024-07-08 05:26:12
合計ジャッジ時間 8,534 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 26 ms
10,880 KB
testcase_04 AC 26 ms
10,880 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 28 ms
10,752 KB
testcase_08 AC 30 ms
11,008 KB
testcase_09 AC 28 ms
10,880 KB
testcase_10 AC 27 ms
11,008 KB
testcase_11 AC 91 ms
11,008 KB
testcase_12 AC 39 ms
11,008 KB
testcase_13 AC 38 ms
10,880 KB
testcase_14 AC 26 ms
10,752 KB
testcase_15 AC 25 ms
10,752 KB
testcase_16 AC 26 ms
10,752 KB
testcase_17 AC 25 ms
10,624 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 25 ms
10,880 KB
testcase_21 AC 25 ms
10,752 KB
testcase_22 AC 26 ms
10,624 KB
testcase_23 TLE -
testcase_24 AC 492 ms
10,880 KB
testcase_25 AC 30 ms
10,752 KB
testcase_26 AC 30 ms
10,752 KB
testcase_27 AC 185 ms
11,008 KB
testcase_28 AC 25 ms
10,752 KB
testcase_29 AC 60 ms
11,008 KB
testcase_30 AC 29 ms
10,880 KB
testcase_31 AC 57 ms
10,880 KB
testcase_32 AC 34 ms
10,752 KB
testcase_33 AC 27 ms
10,880 KB
testcase_34 AC 135 ms
11,136 KB
testcase_35 AC 28 ms
10,880 KB
testcase_36 AC 29 ms
10,880 KB
testcase_37 AC 32 ms
11,008 KB
testcase_38 AC 26 ms
10,752 KB
testcase_39 AC 25 ms
10,624 KB
testcase_40 AC 25 ms
10,880 KB
testcase_41 AC 25 ms
10,752 KB
testcase_42 AC 24 ms
10,624 KB
testcase_43 AC 24 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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()))
adjacent_list = [[] for i in range(n+1)]
for i in range(v):
    adjacent_list[s[i]].append([t[i],y[i],m[i]])
ans = 10**9
memo = [[10**9,10**9] for i in range(n+1)]
def dfs(node,cost,time):
    if node == n:
        global ans
        ans = min(ans, time)
    if memo[node][0] < cost and memo[node][1] < time:
        return 
    if memo[node][0] > cost and memo[node][1] > time:
        memo[node] = [cost, time]
    for n_node, n_cost, n_time in adjacent_list[node]:
        if n_cost + cost <= c:
            dfs(n_node,n_cost + cost, time + n_time)
dfs(1,0,0)
if ans == 10**9:
    print(-1)
else:
    print(ans)
0