#include #include #include using namespace std; struct d{ int s,t,y,m; }; struct dd{ int t,y,m; }; struct k{ int p,c,t; bool operator<(const k a) const { if(t == a.t){ if(c == a.c){ return p < a.p; } return c < a.c; } return t < a.t; } }; int main(){ int n,c,v;cin>>n>>c>>v; vector> Z(n,vector(c+1,1000000)); vector A(v); vector
B[n]; for(int i = 0; v > i; i++){ cin>>A[i].s;A[i].s--; } for(int i = 0; v > i; i++){ cin>>A[i].t;A[i].t--; } for(int i = 0; v > i; i++){ cin>>A[i].y; } for(int i = 0; v > i; i++){ cin>>A[i].m; } for(int i = 0; v > i; i++){ B[A[i].s].push_back({A[i].t,A[i].y,A[i].m}); } //dijkstra priority_queue X; X.push({0,c,0}); Z[0][c] = 0; while(X.size()){ auto x = X.top();X.pop(); for(int i = 0; B[x.p].size() > i; i++){ if(B[x.p][i].y > x.c)continue; if(Z[B[x.p][i].t][x.c-B[x.p][i].y] > Z[x.p][x.c]+B[x.p][i].m){ Z[B[x.p][i].t][x.c-B[x.p][i].y] = Z[x.p][x.c]+B[x.p][i].m; X.push({B[x.p][i].t,x.c-B[x.p][i].y,Z[x.p][x.c]+B[x.p][i].m}); } } } int ans = Z[n-1][0]; for(int i = 0; c >= i; i++){ ans = min(ans,Z[n-1][i]); } cout << (ans==1000000?-1:ans) << endl; }