結果

問題 No.1 道のショートカット
ユーザー otsunekootsuneko
提出日時 2021-04-24 10:59:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 52 ms / 5,000 ms
コード長 741 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 67,792 KB
最終ジャッジ日時 2024-07-04 09:03:26
合計ジャッジ時間 3,103 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,048 KB
testcase_01 AC 37 ms
52,488 KB
testcase_02 AC 35 ms
53,108 KB
testcase_03 AC 36 ms
52,960 KB
testcase_04 AC 36 ms
53,492 KB
testcase_05 AC 35 ms
51,868 KB
testcase_06 AC 36 ms
53,140 KB
testcase_07 AC 37 ms
52,344 KB
testcase_08 AC 48 ms
64,536 KB
testcase_09 AC 42 ms
60,996 KB
testcase_10 AC 49 ms
64,208 KB
testcase_11 AC 42 ms
61,528 KB
testcase_12 AC 50 ms
63,972 KB
testcase_13 AC 47 ms
63,560 KB
testcase_14 AC 35 ms
54,112 KB
testcase_15 AC 35 ms
52,556 KB
testcase_16 AC 38 ms
58,480 KB
testcase_17 AC 36 ms
54,364 KB
testcase_18 AC 34 ms
52,952 KB
testcase_19 AC 35 ms
52,988 KB
testcase_20 AC 48 ms
58,372 KB
testcase_21 AC 37 ms
52,832 KB
testcase_22 AC 34 ms
52,760 KB
testcase_23 AC 50 ms
67,792 KB
testcase_24 AC 46 ms
63,836 KB
testcase_25 AC 37 ms
58,840 KB
testcase_26 AC 44 ms
60,832 KB
testcase_27 AC 50 ms
65,984 KB
testcase_28 AC 34 ms
52,548 KB
testcase_29 AC 52 ms
65,444 KB
testcase_30 AC 48 ms
60,176 KB
testcase_31 AC 48 ms
63,092 KB
testcase_32 AC 45 ms
62,060 KB
testcase_33 AC 44 ms
61,176 KB
testcase_34 AC 50 ms
65,304 KB
testcase_35 AC 37 ms
59,360 KB
testcase_36 AC 44 ms
61,992 KB
testcase_37 AC 46 ms
62,700 KB
testcase_38 AC 36 ms
52,496 KB
testcase_39 AC 35 ms
52,808 KB
testcase_40 AC 39 ms
57,856 KB
testcase_41 AC 36 ms
52,632 KB
testcase_42 AC 36 ms
52,220 KB
testcase_43 AC 34 ms
52,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(10**7)

def dfs(s,y,m):
    global ans
    global cost_time

    if s == N-1 and y <= C:
        ans = min(ans,m)
    for to, cost, time in adj[s]:
        if y + cost <= C and m < ans:
            dfs(to,y+cost,m+time)
                
# 入力の受け取り・隣接リストadjの構築:
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()))

adj = [[] for _ in range(N)]
for i in range(V):
    adj[S[i]-1].append((T[i]-1, Y[i], M[i]))

ans = float("INF")
cost_time = []
dfs(0,0,0)

ans = -1 if ans == float("INF") else ans
print(ans)
0