#include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } constexpr long long MAX = 5100000; constexpr long long INF = 1LL << 60; constexpr int inf = 1000000007; constexpr long long mod = 1000000007LL; //constexpr long long mod = 998244353LL; const long double PI = acos((long double)(-1)); using namespace std; typedef unsigned long long ull; typedef long long ll; typedef long double ld; struct Dinic { struct edge { int to; ll cap; int rev; bool isrev; int idx; edge(int _to, ll _cap, int _rev, bool _isrev, int _idx) :to(_to), cap(_cap), rev(_rev), isrev(_isrev), idx(_idx) {} }; vector> g; vector min_cost, iter; Dinic(int n) :g(n) {} void add_edge(int from, int to, ll cap, int idx = -1) { g[from].emplace_back(to, cap, (int)g[to].size(), false, idx); g[to].emplace_back(from, 0, (int)g[from].size() - 1, true, idx); } bool bfs(int s, int t) { min_cost.assign(g.size(), -1); queue q; q.emplace(s); min_cost[s] = 0; while (!q.empty() && min_cost[t] == -1) { int cur = q.front(); q.pop(); for (auto& e : g[cur]) { if (e.cap > 0 && min_cost[e.to] == -1) { min_cost[e.to] = min_cost[cur] + 1; q.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 < g[idx].size(); i++) { edge& e = g[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; g[e.to][e.rev].cap += d; return d; } } } return 0; } ll max_flow(int s, int t) { ll flow = 0; while (bfs(s, t)) { iter.assign(g.size(), 0); ll f = 0; while ((f = dfs(s, t, INF)) > 0) flow += f; } return flow; } }; int dh[] = { 1,-1,0,0 }; int dw[] = { 0,0,1,-1 }; int n, m; int cnv(int i, int j) { return i * m + j; } int main() { cin.tie(nullptr); ios::sync_with_stdio(false); cin >> n >> m; vector vs(n); for (int i = 0; i < n; i++) cin >> vs[i]; int b = 0, w = 0; Dinic g(n * m + 2); int s = n * m; int t = n * m + 1; for (int i = 0; i < n; i++) { for (int j = 0; j < m; j++) { if (vs[i][j] == 'b') { b++; g.add_edge(s, cnv(i, j), 1); for (int k = 0; k < 4; k++) { int nh = i + dh[k]; int nw = j + dw[k]; if (nh < 0 or nh >= n or nw < 0 or nw >= m) continue; if (vs[nh][nw] == 'w') g.add_edge(cnv(i, j), cnv(nh, nw), 1); } } if (vs[i][j] == 'w') { w++; g.add_edge(cnv(i, j), t, 1); } } } int mx = g.max_flow(s, t); b -= mx; w -= mx; int mn = min(b, w); b -= mn; w -= mn; int res = mx * 100 + mn * 10 + b + w; cout << res << endl; return 0; }