結果

問題 No.1 道のショートカット
ユーザー DrDrpilotDrDrpilot
提出日時 2022-09-05 16:14:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 104 ms / 5,000 ms
コード長 898 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 71,712 KB
最終ジャッジ日時 2024-11-20 16:55:27
合計ジャッジ時間 4,219 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
61,744 KB
testcase_01 AC 52 ms
62,700 KB
testcase_02 AC 52 ms
62,508 KB
testcase_03 AC 51 ms
62,552 KB
testcase_04 AC 50 ms
61,244 KB
testcase_05 AC 51 ms
61,756 KB
testcase_06 AC 51 ms
61,700 KB
testcase_07 AC 52 ms
62,120 KB
testcase_08 AC 76 ms
70,252 KB
testcase_09 AC 65 ms
69,856 KB
testcase_10 AC 71 ms
69,344 KB
testcase_11 AC 76 ms
71,160 KB
testcase_12 AC 104 ms
70,716 KB
testcase_13 AC 102 ms
71,712 KB
testcase_14 AC 54 ms
63,540 KB
testcase_15 AC 54 ms
62,828 KB
testcase_16 AC 58 ms
66,084 KB
testcase_17 AC 53 ms
64,460 KB
testcase_18 AC 56 ms
65,568 KB
testcase_19 AC 61 ms
66,700 KB
testcase_20 AC 66 ms
68,436 KB
testcase_21 AC 61 ms
67,324 KB
testcase_22 AC 59 ms
66,208 KB
testcase_23 AC 80 ms
69,592 KB
testcase_24 AC 81 ms
70,172 KB
testcase_25 AC 68 ms
69,752 KB
testcase_26 AC 62 ms
67,348 KB
testcase_27 AC 87 ms
71,204 KB
testcase_28 AC 53 ms
63,276 KB
testcase_29 AC 69 ms
69,296 KB
testcase_30 AC 60 ms
66,676 KB
testcase_31 AC 63 ms
68,368 KB
testcase_32 AC 71 ms
69,560 KB
testcase_33 AC 68 ms
69,564 KB
testcase_34 AC 81 ms
71,416 KB
testcase_35 AC 54 ms
64,740 KB
testcase_36 AC 67 ms
69,216 KB
testcase_37 AC 58 ms
65,412 KB
testcase_38 AC 53 ms
63,832 KB
testcase_39 AC 57 ms
65,788 KB
testcase_40 AC 59 ms
66,620 KB
testcase_41 AC 54 ms
63,128 KB
testcase_42 AC 51 ms
61,716 KB
testcase_43 AC 54 ms
63,980 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I():return int(input())
def MAP():return map(int,input().split())
def MAPs():return map(str,input().split())
def LI(): return list(map(int,input().split()))
def TPL(): return tuple(map(int,input().split()))
def S():return input()
from collections import defaultdict,Counter,deque
from copy import deepcopy
from heapq import heapify,heappop,heappush
from bisect import bisect_left,bisect_right
from itertools import accumulate,product,permutations,combinations
from math import gcd,ceil,floor,sqrt
inf=float('inf')

n=I()
c=I()
v=I()
s=LI()
t=LI()
y=LI()
m=LI()
dp=[[inf]*(c+1) for _ in range(n+1)]
dp[1][c]=0
for i in range(1,n+1):
    for j in range(c,-1,-1):
        if dp[i][j]!=inf:
            for k in range(v):
                if i==s[k] and j-y[k]>=0:
                    dp[t[k]][j-y[k]]=min(dp[i][j]+m[k],dp[t[k]][j-y[k]])
if min(dp[n])==inf:
    print(-1)
else:
    print(min(dp[n]))
0