結果

問題 No.1 道のショートカット
ユーザー AEnAEn
提出日時 2022-12-10 16:51:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 367 ms / 5,000 ms
コード長 514 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 83,656 KB
最終ジャッジ日時 2024-10-14 23:47:26
合計ジャッジ時間 7,243 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,220 KB
testcase_01 AC 40 ms
53,824 KB
testcase_02 AC 39 ms
52,472 KB
testcase_03 AC 39 ms
53,348 KB
testcase_04 AC 38 ms
52,880 KB
testcase_05 AC 39 ms
53,500 KB
testcase_06 AC 39 ms
53,004 KB
testcase_07 AC 43 ms
59,688 KB
testcase_08 AC 339 ms
82,968 KB
testcase_09 AC 183 ms
81,332 KB
testcase_10 AC 139 ms
78,760 KB
testcase_11 AC 182 ms
78,652 KB
testcase_12 AC 367 ms
83,656 KB
testcase_13 AC 355 ms
83,364 KB
testcase_14 AC 90 ms
76,760 KB
testcase_15 AC 47 ms
64,328 KB
testcase_16 AC 118 ms
80,840 KB
testcase_17 AC 45 ms
60,828 KB
testcase_18 AC 98 ms
78,884 KB
testcase_19 AC 103 ms
79,692 KB
testcase_20 AC 135 ms
79,364 KB
testcase_21 AC 133 ms
79,276 KB
testcase_22 AC 96 ms
77,916 KB
testcase_23 AC 216 ms
77,088 KB
testcase_24 AC 242 ms
77,484 KB
testcase_25 AC 142 ms
77,948 KB
testcase_26 AC 123 ms
77,440 KB
testcase_27 AC 351 ms
80,460 KB
testcase_28 AC 56 ms
66,388 KB
testcase_29 AC 150 ms
77,696 KB
testcase_30 AC 78 ms
75,320 KB
testcase_31 AC 81 ms
75,416 KB
testcase_32 AC 224 ms
81,596 KB
testcase_33 AC 166 ms
80,076 KB
testcase_34 AC 186 ms
77,368 KB
testcase_35 AC 56 ms
66,860 KB
testcase_36 AC 139 ms
78,020 KB
testcase_37 AC 97 ms
77,084 KB
testcase_38 AC 60 ms
67,136 KB
testcase_39 AC 108 ms
80,372 KB
testcase_40 AC 101 ms
77,732 KB
testcase_41 AC 64 ms
70,024 KB
testcase_42 AC 43 ms
59,596 KB
testcase_43 AC 48 ms
65,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
C = int(input())
V = int(input())
edge = [list(map(int, input().split())) for _ in range(4)]

dp = [[[float('inf')]*(C+1) for _ in range(N)] for _ in range(N+1)]
dp[0][0][C] = 0
res = float('inf')
for i in range(1,N+1):
    for j in range(V):
        s,t,y,m = edge[0][j],edge[1][j],edge[2][j],edge[3][j]
        s-=1;t-=1
        for k in range(y,C+1):
            dp[i][t][k-y] = min(dp[i][t][k-y],dp[i-1][s][k]+m)
    res = min(res,min(dp[i][N-1]))
print(-1 if res==float('inf') else res)
    
0