結果
問題 | No.957 植林 |
ユーザー | 🍮かんプリン |
提出日時 | 2020-10-11 18:12:06 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,167 bytes |
コンパイル時間 | 2,005 ms |
コンパイル使用メモリ | 180,304 KB |
実行使用メモリ | 33,324 KB |
最終ジャッジ日時 | 2024-07-20 17:33:17 |
合計ジャッジ時間 | 8,713 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,624 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 139 ms
27,548 KB |
testcase_04 | AC | 131 ms
25,748 KB |
testcase_05 | AC | 118 ms
28,508 KB |
testcase_06 | AC | 167 ms
29,772 KB |
testcase_07 | AC | 119 ms
26,712 KB |
testcase_08 | AC | 75 ms
27,964 KB |
testcase_09 | AC | 74 ms
28,100 KB |
testcase_10 | AC | 79 ms
29,344 KB |
testcase_11 | AC | 78 ms
28,336 KB |
testcase_12 | AC | 77 ms
28,080 KB |
testcase_13 | AC | 65 ms
24,316 KB |
testcase_14 | AC | 81 ms
30,596 KB |
testcase_15 | AC | 74 ms
27,552 KB |
testcase_16 | AC | 68 ms
24,716 KB |
testcase_17 | AC | 71 ms
26,428 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 | -- | - |
ソースコード
/** * @FileName a.cpp * @Author kanpurin * @Created 2020.10.11 18:12:01 **/ #include "bits/stdc++.h" using namespace std; typedef long long ll; struct Dinic { private: struct edge { int to; ll cap; int rev; bool isrev; int idx; }; vector< vector< edge > > graph; vector< int > min_cost, iter; bool bfs(int s, int t) { min_cost.assign(graph.size(), -1); queue< int > que; min_cost[s] = 0; que.push(s); while (!que.empty() && min_cost[t] == -1) { int p = que.front(); que.pop(); for (auto &e : graph[p]) { if (e.cap > 0 && min_cost[e.to] == -1) { min_cost[e.to] = min_cost[p] + 1; que.push(e.to); } } } return min_cost[t] != -1; } ll dfs(int idx, const int t, ll flow) { if (idx == t) return flow; for (int &i = iter[idx]; i < graph[idx].size(); i++) { edge &e = graph[idx][i]; if (e.cap > 0 && min_cost[idx] < min_cost[e.to]) { ll d = dfs(e.to, t, min(flow, e.cap)); if (d > 0) { e.cap -= d; graph[e.to][e.rev].cap += d; return d; } } } return 0; } public: Dinic(int V) : graph(V) {} void add_edge(int from, int to, ll cap, int idx = -1) { graph[from].push_back({to, cap, (int)graph[to].size(), false, idx}); graph[to].push_back({from, 0, (int)graph[from].size() - 1, true, idx}); } ll max_flow(int s, int t) { ll flow = 0; while (bfs(s, t)) { iter.assign(graph.size(), 0); ll f = 0; while ((f = dfs(s, t, 1e9 + 6)) > 0) flow += f; } return flow; } void output() { for (int i = 0; i < graph.size(); i++) { for (auto &e : graph[i]) { if (e.isrev) continue; auto &rev_e = graph[e.to][e.rev]; cout << i << "->" << e.to << " (flow: " << rev_e.cap << "/" << e.cap + rev_e.cap << ")" << endl; } } } }; int main() { int h,w;cin >> h >> w; Dinic g(h*w+h+w+2); int source = h*w+h+w, target = h*w+h+w+1; ll ans = 0; for (int i = 0; i < h; i++) { for (int j = 0; j < w; j++) { int t;cin >> t; g.add_edge(source,i*w+j,t); g.add_edge(i*w+j,target,0); } } constexpr long long LLINF = 1e14; for (int i = 0; i < h; i++) { int r;cin >> r; ans += r; g.add_edge(source,h*w+i,0); g.add_edge(h*w+i,target,r); for (int j = 0; j < w; j++) { g.add_edge(i*w+j,h*w+i,LLINF); } } for (int j = 0; j < w; j++) { int c;cin >> c; ans += c; g.add_edge(source,h*w+h+j,0); g.add_edge(h*w+h+j,target,c); for (int i = 0; i < h; i++) { g.add_edge(i*w+j,h*w+h+j,LLINF); } } cout << ans - g.max_flow(source,target) << endl; return 0; }