結果
問題 | No.119 旅行のツアーの問題 |
ユーザー | 0w1 |
提出日時 | 2021-01-03 12:11:53 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 3 ms / 5,000 ms |
コード長 | 5,082 bytes |
コンパイル時間 | 2,551 ms |
コンパイル使用メモリ | 214,888 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-13 05:31:42 |
合計ジャッジ時間 | 3,231 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | AC | 2 ms
6,820 KB |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | AC | 2 ms
6,820 KB |
testcase_04 | AC | 2 ms
6,820 KB |
testcase_05 | AC | 2 ms
6,816 KB |
testcase_06 | AC | 2 ms
6,816 KB |
testcase_07 | AC | 2 ms
6,816 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,816 KB |
testcase_11 | AC | 2 ms
6,816 KB |
testcase_12 | AC | 2 ms
6,820 KB |
testcase_13 | AC | 2 ms
6,820 KB |
testcase_14 | AC | 2 ms
6,816 KB |
testcase_15 | AC | 2 ms
6,820 KB |
testcase_16 | AC | 3 ms
6,820 KB |
testcase_17 | AC | 2 ms
6,816 KB |
testcase_18 | AC | 2 ms
6,816 KB |
testcase_19 | AC | 2 ms
6,820 KB |
testcase_20 | AC | 2 ms
6,820 KB |
testcase_21 | AC | 2 ms
6,816 KB |
testcase_22 | AC | 3 ms
6,820 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; /*^ debug */ template <typename A, typename B> string to_string(pair<A, B> p); template <typename A, typename B, typename C> string to_string(tuple<A, B, C> p); template <typename A, typename B, typename C, typename D> string to_string(tuple<A, B, C, D> p); string to_string(const string& s) { return '"' + s + '"'; } string to_string(const char* s) { return to_string((string) s); } string to_string(bool b) { return (b ? "true" : "false"); } string to_string(vector<bool> v) { bool first = true; string res = "{"; for (int i = 0; i < static_cast<int>(v.size()); i++) { if (!first) { res += ", "; } first = false; res += to_string(v[i]); } res += "}"; return res; } template <size_t N> string to_string(bitset<N> v) { string res = ""; for (size_t i = 0; i < N; i++) { res += static_cast<char>('0' + v[i]); } return res; } template <typename A> string to_string(A v) { bool first = true; string res = "{"; for (const auto &x : v) { if (!first) { res += ", "; } first = false; res += to_string(x); } res += "}"; return res; } template <typename A, typename B> string to_string(pair<A, B> p) { return "(" + to_string(p.first) + ", " + to_string(p.second) + ")"; } template <typename A, typename B, typename C> string to_string(tuple<A, B, C> p) { return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ")"; } template <typename A, typename B, typename C, typename D> string to_string(tuple<A, B, C, D> p) { return "(" + to_string(get<0>(p)) + ", " + to_string(get<1>(p)) + ", " + to_string(get<2>(p)) + ", " + to_string(get<3>(p)) + ")"; } void debug_out() { cerr << endl; } template <typename Head, typename... Tail> void debug_out(Head H, Tail... T) { cerr << " " << to_string(H); debug_out(T...); } #ifdef LOCAL #define debug(...) cerr << "[" << #__VA_ARGS__ << "]:", debug_out(__VA_ARGS__) #else #define debug(...) 42 #endif /* debug $*/ /*^ vector extensions */ template<typename T> T concat(initializer_list<T> lists) { T a; for (auto &l : lists) a.insert(a.end(), l.begin(), l.end()); return a; } template<typename T, size_t sz> struct _Matrix_type { typedef vector<typename _Matrix_type<T, sz - 1>::type> type; }; template<typename T> struct _Matrix_type<T, 1> { typedef T type; }; template<typename T> struct _Matrix { static auto build(size_t s) { return vector<T>(s); } template<typename ...Args> static auto build(size_t f, Args... args) { return vector<typename _Matrix_type<T, 1 + sizeof...(args)>::type>(f, _Matrix<T>::build(args...)); } }; template<typename T, typename... Args> auto buildMatrix(Args... args) { return _Matrix<T>::build(args...); } /* vector extensions $*/ /*^ generic definitions */ template<typename F> struct _RecurFun : F { _RecurFun(F&& f) : F(forward<F>(f)) {} template<typename... Args> decltype(auto) operator()(Args&&... args) const { return F::operator()(*this, forward<Args>(args)...); } }; template<typename F> decltype(auto) RecurFun(F&& f) { return _RecurFun<F> { forward<F>(f) }; } /* generic definitions $*/ template<typename T = int, T INF = 0x3f3f3f3f> struct EKarp { int n; vector<vector<T>> capacity; vector<vector<int>> adj; EKarp(int _n) : n(_n), capacity(_n, vector<T>(_n)), adj(_n) {} void addEdge(T w, int u, int v) { adj[u].push_back(v); adj[v].push_back(u); capacity[u][v] += w; } T bfs(int s, int t, vector<int> &parent) { fill(parent.begin(), parent.end(), -1); parent[s] = -2; queue<pair<int, int>> que; que.push({ s, INF }); while (que.size()) { auto [cur, flow] = que.front(); que.pop(); for (int nxt : adj[cur]) { if (parent[nxt] == -1 && capacity[cur][nxt]) { parent[nxt] = cur; T nflow = min(flow, capacity[cur][nxt]); if (nxt == t) return nflow; que.push({ nxt, nflow }); } } } return (T) 0; } T maxflow(int s, int t) { T flow = 0; vector<int> parent(n); T nflow; while (nflow = bfs(s, t, parent)) { flow += nflow; int cur = t; while (cur != s) { int pre = parent[cur]; capacity[pre][cur] -= nflow; capacity[cur][pre] += nflow; cur = pre; } } return flow; } }; int main() { ios::sync_with_stdio(false); int N; { cin >> N; } vector<int> B(N), C(N); { for (int i = 0; i < N; ++i) cin >> B[i] >> C[i]; } int M; { cin >> M; } vector<int> D(M), E(M); { for (int i = 0; i < M; ++i) cin >> D[i] >> E[i]; } int res = 0; { for (int i = 0; i < N; ++i) res += B[i] + C[i]; const int INF = 0x3f3f3f3f; EKarp<int, INF> ekarp(2 * N + 2); { for (int i = 0; i < N; ++i) { ekarp.addEdge(B[i], 2 * N, i); ekarp.addEdge(C[i], N + i, 2 * N + 1); ekarp.addEdge(INF, i, N + i); } for (int i = 0; i < M; ++i) { ekarp.addEdge(INF, D[i], N + E[i]); } } res -= ekarp.maxflow(2 * N, 2 * N + 1); } cout << res << endl; }