これはもう、editorial にある図がすべてなので備忘録程度に!
問題概要
のグリッドがある。 個の石があり、石 は、 かつ を満たすようなマス に置くことができる。
ただし、どの行・どの列についても、2 個以上の石が置かれないようにする。
最大で何個の石を置くことができるか求めよ。
制約
考えたこと
問題文からいかにもフローという香りが漂っている。
- どの行についても高々 1 個
- どの列についても高々 1 個
という条件は、それぞれ
- ソースノードから各行を表すノードへの容量 1 の辺
- 各列を表すノードからシンクノードへの容量 1 の辺
として表現できることが多い。今回はさらに、各石を表すノードも用意しよう。このとき、この問題の制約条件は、
- のとき、行 を表すノードから、石 を表すノードへ、容量 1 の辺
- のとき、石 を表すノードから、列 を表すノードへ、容量 1 の辺
- 石 を表すノード自体に、容量 1 という制約
というように表現できる。なお、ノードに容量制約があるとき、ノードを 2 つに分割して、その間にその容量の辺を貼るというテクがある。
以上のフローネットワークにおいて、最大流の値を求めれば良い。公式解説にあるネットワークを見ると分かりやすい。
コード
#include <bits/stdc++.h> using namespace std; // edge class (for network-flow) template<class FLOWTYPE> struct FlowEdge { // core members int rev, from, to; FLOWTYPE cap, icap, flow; // constructor FlowEdge(int r, int f, int t, FLOWTYPE c) : rev(r), from(f), to(t), cap(c), icap(c), flow(0) {} void reset() { cap = icap, flow = 0; } // debug friend ostream& operator << (ostream& s, const FlowEdge& E) { return s << E.from << "->" << E.to << '(' << E.flow << '/' << E.icap << ')'; } }; // graph class (for network-flow) template<class FLOWTYPE> struct FlowGraph { // core members vector<vector<FlowEdge<FLOWTYPE>>> list; vector<pair<int,int>> pos; // pos[i] := {vertex, order of list[vertex]} of i-th edge // constructor FlowGraph(int n = 0) : list(n) { } void init(int n = 0) { list.assign(n, FlowEdge<FLOWTYPE>()); pos.clear(); } // getter vector<FlowEdge<FLOWTYPE>> &operator [] (int i) { return list[i]; } const vector<FlowEdge<FLOWTYPE>> &operator [] (int i) const { return list[i]; } size_t size() const { return list.size(); } FlowEdge<FLOWTYPE> &get_rev_edge(const FlowEdge<FLOWTYPE> &e) { if (e.from != e.to) return list[e.to][e.rev]; else return list[e.to][e.rev + 1]; } FlowEdge<FLOWTYPE> &get_edge(int i) { return list[pos[i].first][pos[i].second]; } const FlowEdge<FLOWTYPE> &get_edge(int i) const { return list[pos[i].first][pos[i].second]; } vector<FlowEdge<FLOWTYPE>> get_edges() const { vector<FlowEdge<FLOWTYPE>> edges; for (int i = 0; i < (int)pos.size(); ++i) { edges.push_back(get_edge(i)); } return edges; } // change edges void reset() { for (int i = 0; i < (int)list.size(); ++i) { for (FlowEdge<FLOWTYPE> &e : list[i]) e.reset(); } } void change_edge(FlowEdge<FLOWTYPE> &e, FLOWTYPE new_cap, FLOWTYPE new_flow) { FlowEdge<FLOWTYPE> &re = get_rev_edge(e); e.cap = new_cap - new_flow, e.icap = new_cap, e.flow = new_flow; re.cap = new_flow; } // add_edge void add_edge(int from, int to, FLOWTYPE cap) { pos.emplace_back(from, (int)list[from].size()); list[from].push_back(FlowEdge<FLOWTYPE>((int)list[to].size(), from, to, cap)); list[to].push_back(FlowEdge<FLOWTYPE>((int)list[from].size() - 1, to, from, 0)); } // debug friend ostream& operator << (ostream& s, const FlowGraph &G) { const auto &edges = G.get_edges(); for (const auto &e : edges) s << e << endl; return s; } }; // Dinic template<class FLOWTYPE> FLOWTYPE Dinic (FlowGraph<FLOWTYPE> &G, int s, int t, FLOWTYPE limit_flow) { FLOWTYPE current_flow = 0; vector<int> level((int)G.size(), -1), iter((int)G.size(), 0); // Dinic BFS auto bfs = [&]() -> void { level.assign((int)G.size(), -1); level[s] = 0; queue<int> que; que.push(s); while (!que.empty()) { int v = que.front(); que.pop(); for (const FlowEdge<FLOWTYPE> &e : G[v]) { if (level[e.to] < 0 && e.cap > 0) { level[e.to] = level[v] + 1; if (e.to == t) return; que.push(e.to); } } } }; // Dinic DFS auto dfs = [&](auto self, int v, FLOWTYPE up_flow) { if (v == t) return up_flow; FLOWTYPE res_flow = 0; for (int &i = iter[v]; i < (int)G[v].size(); ++i) { FlowEdge<FLOWTYPE> &e = G[v][i], &re = G.get_rev_edge(e); if (level[v] >= level[e.to] || e.cap == 0) continue; FLOWTYPE flow = self(self, e.to, min(up_flow - res_flow, e.cap)); if (flow <= 0) continue; res_flow += flow; e.cap -= flow, e.flow += flow; re.cap += flow, re.flow -= flow; if (res_flow == up_flow) break; } return res_flow; }; // flow while (current_flow < limit_flow) { bfs(); if (level[t] < 0) break; iter.assign((int)iter.size(), 0); while (current_flow < limit_flow) { FLOWTYPE flow = dfs(dfs, s, limit_flow - current_flow); if (!flow) break; current_flow += flow; } } return current_flow; }; template<class FLOWTYPE> FLOWTYPE Dinic(FlowGraph<FLOWTYPE> &G, int s, int t) { return Dinic(G, s, t, numeric_limits<FLOWTYPE>::max()); } int main() { int H, W, N; cin >> H >> W >> N; vector<int> h_l(N), h_r(N), w_l(N), w_r(N); for (int i = 0; i < N; ++i) { cin >> h_l[i] >> w_l[i] >> h_r[i] >> w_r[i]; --h_l[i], --w_l[i]; } FlowGraph<int> G(H + W + N * 2 + 2); int s = H+W+N*2, t = s+1; for (int i = 0; i < H; ++i) G.add_edge(s, i, 1); for (int i = 0; i < W; ++i) G.add_edge(H+i, t, 1); for (int i = 0; i < N; ++i) G.add_edge(H+W+i, H+W+N+i, 1); for (int i = 0; i < N; ++i) { for (int j = h_l[i]; j < h_r[i]; ++j) { G.add_edge(j, H+W+i, 1); } for (int j = w_l[i]; j < w_r[i]; ++j) { G.add_edge(H+W+N+i, H+j, 1); } } auto max_flow = Dinic(G, s, t); cout << max_flow << endl; }