結果
問題 | No.957 植林 |
ユーザー | fine |
提出日時 | 2019-12-20 01:42:37 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,730 bytes |
コンパイル時間 | 1,714 ms |
コンパイル使用メモリ | 182,764 KB |
実行使用メモリ | 29,088 KB |
最終ジャッジ日時 | 2024-07-07 02:30:52 |
合計ジャッジ時間 | 6,417 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 0 ms
13,756 KB |
testcase_01 | AC | 2 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,944 KB |
testcase_03 | AC | 87 ms
22,172 KB |
testcase_04 | AC | 70 ms
21,104 KB |
testcase_05 | AC | 77 ms
22,596 KB |
testcase_06 | AC | 83 ms
23,644 KB |
testcase_07 | AC | 90 ms
21,272 KB |
testcase_08 | AC | 52 ms
22,176 KB |
testcase_09 | AC | 50 ms
22,312 KB |
testcase_10 | AC | 60 ms
23,324 KB |
testcase_11 | AC | 57 ms
22,324 KB |
testcase_12 | AC | 56 ms
22,292 KB |
testcase_13 | AC | 41 ms
19,352 KB |
testcase_14 | AC | 52 ms
24,224 KB |
testcase_15 | AC | 52 ms
21,880 KB |
testcase_16 | AC | 41 ms
19,384 KB |
testcase_17 | AC | 46 ms
20,980 KB |
testcase_18 | TLE | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; constexpr ll INF = 1e17; struct Dinic { using T = ll; struct Edge { int to; T cap; int rev; //行き先、容量、逆辺 Edge(int to, T cap, int rev) : to(to), cap(cap), rev(rev) {} }; vector< vector<Edge> > G; vector<int> level, iter; private: void bfs(int s) { fill(level.begin(), level.end(), -1); queue<int> que; level[s] = 0; que.push(s); while (!que.empty()) { int v = que.front(); que.pop(); for (const Edge& e : G[v]) { if (e.cap > 0 && level[e.to] < 0) { level[e.to] = level[v] + 1; que.push(e.to); } } } } T dfs(int v, int t, T f) { if (v == t) return f; for (int& i = iter[v]; i < G[v].size(); i++) { Edge& e = G[v][i]; if (e.cap > 0 && level[v] < level[e.to]) { T d = dfs(e.to, t, min(f, e.cap)); if (d > 0) { e.cap -= d; G[e.to][e.rev].cap += d; return d; } } } return 0; } public: Dinic(int V) : G(V), level(V, -1), iter(V, 0) {} void add_edge(int from, int to, T cap) { G[from].push_back(Edge(to, cap, G[to].size())); G[to].push_back(Edge(from, 0, G[from].size() - 1)); } T max_flow(int s, int t) { T flow = 0; while (true) { bfs(s); if (level[t] < 0) return flow; fill(iter.begin(), iter.end(), 0); T f; while ((f = dfs(s, t, INF)) > 0) { flow += f; } } } }; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int H, W; cin >> H >> W; Dinic d(H * W + H + W + 2); int src = H * W + H + W; int dst = src + 1; for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { ll g; cin >> g; d.add_edge(i * W + j, dst, g); } } ll ans = 0; for (int i = 0; i < H; ++i) { ll r; cin >> r; ans += r; d.add_edge(src, H * W + i, r); for (int j = 0; j < W; ++j) { d.add_edge(H * W + i, i * W + j, INF); } } for (int j = 0; j < W; ++j) { ll c; cin >> c; ans += c; d.add_edge(src, H * W + H + j, c); for (int i = 0; i < H; ++i) { d.add_edge(H * W + H + j, i * W + j, INF); } } ans -= d.max_flow(src, dst); cout << ans << "\n"; return 0; }