結果
問題 | No.957 植林 |
ユーザー | fine |
提出日時 | 2019-12-20 02:52:10 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 3,398 bytes |
コンパイル時間 | 2,293 ms |
コンパイル使用メモリ | 185,584 KB |
実行使用メモリ | 30,212 KB |
最終ジャッジ日時 | 2024-07-07 04:13:32 |
合計ジャッジ時間 | 6,513 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
12,320 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 82 ms
22,216 KB |
testcase_04 | AC | 73 ms
20,540 KB |
testcase_05 | AC | 73 ms
22,808 KB |
testcase_06 | AC | 81 ms
23,520 KB |
testcase_07 | AC | 89 ms
21,988 KB |
testcase_08 | AC | 37 ms
17,708 KB |
testcase_09 | AC | 37 ms
17,712 KB |
testcase_10 | AC | 38 ms
18,484 KB |
testcase_11 | AC | 39 ms
18,836 KB |
testcase_12 | AC | 40 ms
18,720 KB |
testcase_13 | AC | 25 ms
13,164 KB |
testcase_14 | AC | 29 ms
16,592 KB |
testcase_15 | AC | 27 ms
15,020 KB |
testcase_16 | AC | 23 ms
13,696 KB |
testcase_17 | AC | 24 ms
13,912 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 = 1e15; 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].emplace_back(to, cap, G[to].size()); G[to].emplace_back(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; vector< vector<ll> > g(H, vector<ll>(W)); for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { cin >> g[i][j]; } } ll ans = 0; vector<int> used_h(H, false), used_w(W, false); for (int i = 0; i < H; ++i) { ll r; cin >> r; ll sum = 0; for (int j = 0; j < W; ++j) { sum += g[i][j]; } if (r >= sum) { ans += r - sum; used_h[i] = true; d.add_edge(src, H * W + i, INF); } else { d.add_edge(H * W + i, dst, sum - r); } } for (int j = 0; j < W; ++j) { ll c; cin >> c; ll sum = 0; for (int i = 0; i < H; ++i) { sum += g[i][j]; } if (c >= sum) { ans += c - sum; used_w[j] = true; d.add_edge(src, H * W + H + j, INF); } else { d.add_edge(H * W + H + j, dst, sum - c); } } for (int i = 0; i < H; ++i) { for (int j = 0; j < W; ++j) { ans += g[i][j]; if (used_h[i] && used_w[j]) continue; d.add_edge(src, i * W + j, g[i][j]); d.add_edge(i * W + j, H * W + i, INF); d.add_edge(i * W + j, H * W + H + j, INF); } } ans -= d.max_flow(src, dst); cout << ans << "\n"; return 0; }