#include using namespace std; #define times(n, i) uptil(0, n, i) #define rtimes(n, i) downto((n) - 1, 0, i) #define upto(f, t, i) for(int i##_to_ = (t), i = (f); i <= i##_to_; i++) #define uptil(f, t, i) for(int i##_to_ = (t), i = (f); i < i##_to_; i++) #define downto(f, t, i) for(int i##_to_ = (t), i = (f); i >= i##_to_; i--) #define downtil(f, t, i) for(int i##_to_ = (t), i = (f); i > i##_to_; i--) typedef long double LD; #define long long long #if defined(EBUG) && !defined(ONLINE_JUDGE) #define debug true #define _GLIBCXX_DEBUG #define _LIBCPP_DEBUG 2 #define _LIBCPP_DEBUG2 2 #define ln << endl #else #define debug false #define ln << '\n' #endif #define tb << '\t' #define sp << ' ' signed main() { // long: 64bit if(!debug) { cin.tie(0); ios::sync_with_stdio(0); } int N, C, V; scanf("%d%d%d", &N, &C, &V); vector S(V); times(V, i) { scanf("%lld", &S[i]); --S[i]; } vector T(V); times(V, i) { scanf("%lld", &T[i]); --T[i]; } vector Y(V); times(V, i) scanf("%lld", &Y[i]); vector M(V); times(V, i) scanf("%lld", &M[i]); vector> path(N); times(V, i) path[S[i]].push_back(i); vector> time(N, vector(C+1, LLONG_MAX/2)); time[0][0] = 0; times(N, i) { for(int j : path[i]) { upto(0, C - Y[j], k) { time[T[j]][k + Y[j]] = min(time[T[j]][k + Y[j]], time[i][k] + M[j]); } } if(debug) { times(C+1, j) cout << (j?" ":"") << time[i][j]; cout ln; } } long ans = *min_element(time[N-1].begin(), time[N-1].end()); cout << (ans >= LLONG_MAX/2 ? -1 : ans) ln; return 0; }