#include template constexpr T inf_v = std::numeric_limits::max() / 4; template constexpr Real pi_v = Real{3.141592653589793238462643383279502884}; template constexpr T TEN(const int n) { return n == 0 ? T{1} : TEN(n - 1) * T{10}; } template struct cost_flow { private: struct edge { int to, rev; Cap cap; Cost cost; const bool is_rev; }; const int sz; std::vector> edges; std::vector pot; public: cost_flow(const int v) : sz(v), edges(v), pot(v, 0) {} void add_edge(const int from, const int to, const Cap cap, const Cost cost) { assert(from < sz), assert(to < sz), edges[from].push_back(edge{to, edges[to].size(), cap, cost, false}), edges[to].push_back(edge{from, static_cast(edges[from].size() - 1), 0, -cost, true}); } const std::vector& operator[](const int i) const { return assert(i < sz), edges[i]; } std::vector& operator[](const int i) { return assert(i < sz), edges[i]; } void calc_potential(const int s, const bool is_dag = false) { if (is_dag) { std::vector ord; std::vector used(sz, 0); auto dfs = [&](auto&& self, const int s) -> void { if (not used[s]) { used[s] = true; for (const auto& e : edges[s]) { if (e.cap == 0) { continue; } self(self, e.to); } ord.push_back(s); } }; for (int i = 0; i < sz; i++) { dfs(dfs, i); } std::reverse(ord.begin(), ord.end()); std::fill(pot.begin(), pot.end(), inf_v); for (int i = 0; i < sz; i++) { if (ord[i] == s) { pot[s] = 0; } if (pot[ord[i]] == inf_v) { continue; } for (const auto& e : edges[ord[i]]) { if (e.cap == 0) { continue; } pot[e.to] = std::min(pot[e.to], pot[ord[i]] + e.cost); } } } else { std::fill(pot.begin(), pot.end(), inf_v); pot[s] = 0; for (int i = 0; i < sz; i++) { for (int v = 0; v < sz; v++) { if (pot[v] == inf_v) { continue; } for (const auto& e : edges[v]) { if (e.cap == 0) { continue; } if (pot[e.to] <= pot[v] + e.cost) { continue; } pot[e.to] = pot[v] + e.cost; if (i + 1 == sz) { pot[e.to] = -inf_v; } } } } } } template std::pair primal_dual(const int s, const int t, Cap f) { std::vector dist(sz, inf_v); using P = std::pair; std::priority_queue, std::greater

> q; std::vector prev_v(sz), prev_e(sz); Result ans = 0; while (f > 0) { std::fill(dist.begin(), dist.end(), inf_v); dist[s] = 0, q.push({0, s}); while (not q.empty()) { const Result cost = q.top().first; const int v = q.top().second; q.pop(); if (dist[v] < cost) { continue; } for (int i = 0; i < edges[v].size(); i++) { const auto& e = edges[v][i]; const Cost pd = pot[v] - pot[e.to]; if (e.cap == 0 or dist[e.to] <= dist[v] + e.cost + pd) { continue; } dist[e.to] = dist[v] + e.cost + pd, prev_v[e.to] = v, prev_e[e.to] = i; q.push({dist[e.to], e.to}); } } if (dist[t] == inf_v) { return {false, ans}; } for (int v = 0; v < sz; v++) { pot[v] += dist[v]; } Cap d = f; for (int v = t; v != s; v = prev_v[v]) { const auto& e = edges[prev_v[v]][prev_e[v]]; d = std::min(d, e.cap); } f -= d, ans += static_cast(d) * static_cast(pot[t]); for (int v = t; v != s; v = prev_v[v]) { auto& e = edges[prev_v[v]][prev_e[v]]; e.cap -= d, edges[v][e.rev].cap += d; } } return {true, ans}; } friend std::ostream& operator<<(std::ostream& os, const cost_flow& cf) { os << "[\n"; for (int i = 0; i < cf.size(); i++) { for (const auto& e : cf[i]) { if (not e.is_rev) { os << i << "->" << e.to << ":" << "\n"; } } } return (os << "]\n"); } }; using ll = long long; using uint = unsigned int; using ull = unsigned long long; using ld = long double; template using max_heap = std::priority_queue; template using min_heap = std::priority_queue, std::greater>; constexpr int popcount(const ull v) { return v ? __builtin_popcountll(v) : 0; } constexpr int log2p1(const ull v) { return v ? 64 - __builtin_clzll(v) : 0; } constexpr int lsbp1(const ull v) { return __builtin_ffsll(v); } constexpr int clog(const ull v) { return v ? log2p1(v - 1) : 0; } constexpr ull ceil2(const ull v) { return 1ULL << clog(v); } constexpr ull floor2(const ull v) { return v ? (1ULL << (log2p1(v) - 1)) : 0ULL; } constexpr bool btest(const ull mask, const int ind) { return (mask >> ind) & 1ULL; } template void bset(T& mask, const int ind) { mask |= ((T)1 << ind); } template void breset(T& mask, const int ind) { mask &= ~((T)1 << ind); } template void bflip(T& mask, const int ind) { mask ^= ((T)1 << ind); } template void bset(T& mask, const int ind, const bool b) { (b ? bset(mask, ind) : breset(mask, ind)); } template bool chmin(T& a, const T& b) { return (a > b ? a = b, true : false); } template bool chmax(T& a, const T& b) { return (a < b ? a = b, true : false); } template struct fix : F { fix(F&& f) : F{std::forward(f)} {} template auto operator()(Args&&... args) const { return F::operator()(*this, std::forward(args)...); } }; template auto nd_array(int const (&szs)[n], const T x = T{}) { if constexpr (i == n) { return x; } else { return std::vector(szs[i], nd_array(szs, x)); } } template std::ostream& operator<<(std::ostream& os, const std::array& v) { os << "["; for (const auto& e : v) { os << e << ","; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::deque& v) { os << "["; for (const auto& e : v) { os << e << ","; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::map& v) { os << "["; for (const auto& e : v) { os << "<" << e.first << ": " << e.second << ">,"; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::multimap& v) { os << "["; for (const auto& e : v) { os << "<" << e.first << ": " << e.second << ">,"; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::multiset& v) { os << "["; for (const auto& e : v) { os << e << ","; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::pair& v) { return (os << "<" << v.first << "," << v.second << ">"); } template std::ostream& operator<<(std::ostream& os, const std::priority_queue& v) { auto q = v; os << "["; while (not q.empty()) { os << q.top() << ",", q.pop(); } return os << "]\n"; } template std::ostream& operator<<(std::ostream& os, const std::queue& v) { auto q = v; os << "["; while (not q.empty()) { os << q.front() << ",", q.pop(); } return os << "]\n"; } template std::ostream& operator<<(std::ostream& os, const std::set& v) { os << "["; for (const auto& e : v) { os << e << ","; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::stack& v) { auto q = v; os << "["; while (not q.empty()) { os << q.top() << ",", q.pop(); } return os << "]\n"; } template std::ostream& print(std::ostream& os, const TupType& _tup, std::index_sequence) { return os << "(", (..., (os << (I == 0 ? "" : ", ") << std::get(_tup))), os << ")\n"; } template std::ostream& operator<<(std::ostream& os, const std::tuple& _tup) { return print(os, _tup, std::make_index_sequence()); } template std::ostream& operator<<(std::ostream& os, const std::unordered_map& v) { os << "["; for (const auto& e : v) { os << "<" << e.first << ": " << e.second << ">,"; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::unordered_multimap& v) { os << "["; for (const auto& e : v) { os << "<" << e.first << ": " << e.second << ">,"; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::unordered_multiset& v) { os << "["; for (const auto& e : v) { os << e << ","; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::unordered_set& v) { os << "["; for (const auto& e : v) { os << e << ","; } return (os << "]" << std::endl); } template std::ostream& operator<<(std::ostream& os, const std::vector& v) { os << "["; for (const auto& e : v) { os << e << ","; } return (os << "]" << std::endl); } class printer { public: printer(std::ostream& os_ = std::cout) : m_os{os_} { m_os << std::fixed << std::setprecision(15); } template int ln(const Args&... args) { return dump(args...), m_os << '\n', 0; } template int el(const Args&... args) { return dump(args...), m_os << std::endl, 0; } private: template void dump(const T& v) { m_os << v; } template void dump(const std::vector& vs) { for (int i = 0; i < (int)vs.size(); i++) { m_os << (i ? " " : ""), dump(vs[i]); } } template void dump(const std::vector>& vss) { for (int i = 0; i < (int)vss.size(); i++) { m_os << (0 <= i or i + 1 < (int)vss.size() ? "\n" : ""), dump(vss[i]); } } template int dump(const T& v, const Args&... args) { return dump(v), m_os << ' ', dump(args...), 0; } std::ostream& m_os; }; printer out; class scanner { public: scanner(std::istream& is_ = std::cin) : m_is{is_} { m_is.tie(nullptr), std::ios::sync_with_stdio(false); } template T val() { T v; return m_is >> v, v; } template T val(const T offset) { return val() - offset; } template std::vector vec(const int n) { return make_v(n, [this]() { return val(); }); } template std::vector vec(const int n, const T offset) { return make_v(n, [this, offset]() { return val(offset); }); } template std::vector> vvec(const int n0, const int n1) { return make_v>(n0, [this, n1]() { return vec(n1); }); } template std::vector> vvec(const int n0, const int n1, const T offset) { return make_v>(n0, [this, n1, offset]() { return vec(n1, offset); }); } template auto tup() { return std::tuple...>{val()...}; } template auto tup(const Args&... offsets) { return std::tuple...>{val(offsets)...}; } private: template std::vector make_v(const int n, F f) { std::vector ans; for (int i = 0; i < n; i++) { ans.push_back(f()); } return ans; } std::istream& m_is; }; scanner in; template void HogeHogeSansuu(T x) { std::cerr << x; } template void HogeHogeSansuu(T x, Args... args) { std::cerr << x << ",", HogeHogeSansuu(args...); } int main() { const auto [N, M] = in.tup(); cost_flow f(N); for (int i = 0; i < M; i++) { const auto [u, v, c, d] = in.tup(1, 1, 0, 0); f.add_edge(u, v, 1, c), f.add_edge(v, u, 1, c); f.add_edge(u, v, 1, d), f.add_edge(v, u, 1, d); } const ll ans = f.primal_dual(0, N - 1, 2).second; out.ln(ans); return 0; }