#include #include #include #include bool less(std::pair lhs, std::pair rhs) { if(lhs.first == rhs.first) { return lhs.second < rhs.second; } return lhs.first < rhs.first; } bool less2(std::pair lhs, std::pair rhs) { return (lhs.first < rhs.first) && (lhs.second < rhs.second); } std::pair plus(std::pair lhs, std::pair rhs) { return std::make_pair(lhs.first + rhs.first, lhs.second + rhs.second); } static int const INF{100000000}; int main(int, char**) { int N, C, V; std::cin >> N >> C >> V; std::vector ss(V), ts(V), ys(V),ms(V); for(int i{0}; i < V; ++i) { std::cin >> ss[i]; } for(int i{0}; i < V; ++i) { std::cin >> ts[i]; } for(int i{0}; i < V; ++i) { std::cin >> ys[i]; } for(int i{0}; i < V; ++i) { std::cin >> ms[i]; } std::vector> vcs(V), vs(V); for(int i{0}; i < V; ++i) { vcs[i] = std::make_pair(ms[i], ys[i]); vs[i] = std::make_pair(ss[i] - 1, ts[i] - 1); } std::sort(begin(vs), end(vs), less); // for(auto e: vs) { // std::cout << e.first << ',' << e.second << std::endl; // } std::vector>> ns(N, std::vector>(1, std::make_pair(INF, INF))); ns[0] = std::vector>(1, std::make_pair(0, 0)); for(int i{0}; i < V; ++i) { auto const _v = vs[i]; int const s = _v.first; int const t = _v.second; auto& n = ns[t]; for(auto c: ns[s]) { auto new_cost = plus(c, vcs[i]); n.push_back(new_cost); auto it = std::remove_if(begin(n), end(n), [C, new_cost](auto x) { return x.second > C; }); n.erase(it, end(n)); // for(auto e: n) { // std::cout << e.first << ',' << e.second << std::endl; // } // std::cout << "#####" << ns[s].size() << std::endl; } // std::cout << "--------------" << std::endl; } auto& n = ns[N - 1]; std::sort(begin(n), end(n), less); // for(auto e: n) { // std::cout << e.first << ',' << e.second << std::endl; // } if(begin(n) == end(n) || n[0].first == INF) { std::cout << -1 << std::endl; } else { std::cout << n[0].first << std::endl; } return 0; }