/* #region Head */ #include using namespace std; using ll = long long; using ull = unsigned long long; using ld = long double; using pll = pair; template using vc = vector; template using vvc = vc>; using vll = vc; using vvll = vvc; using vld = vc; using vvld = vvc; using vs = vc; using vvs = vvc; template using um = unordered_map; template using pq = priority_queue; template using pqa = priority_queue, greater>; template using us = unordered_set; #define REP(i, m, n) for (ll i = (m), i##_len = (ll)(n); i < i##_len; ++(i)) #define REPM(i, m, n) for (ll i = (m), i##_max = (ll)(n); i <= i##_max; ++(i)) #define REPR(i, m, n) for (ll i = (m), i##_min = (ll)(n); i >= i##_min; --(i)) #define REPD(i, m, n, d) for (ll i = (m), i##_len = (ll)(n); i < i##_len; i += (d)) #define REPMD(i, m, n, d) for (ll i = (m), i##_max = (ll)(n); i <= i##_max; i += (d)) #define REPI(itr, ds) for (auto itr = ds.begin(); itr != ds.end(); itr++) #define ALL(x) begin(x), end(x) #define SIZE(x) ((ll)(x).size()) #define PERM(c) \ sort(ALL(c)); \ for (bool c##p = 1; c##p; c##p = next_permutation(ALL(c))) #define UNIQ(v) v.erase(unique(ALL(v)), v.end()); #define endl '\n' #define sqrt sqrtl #define floor floorl #define log2 log2l constexpr ll INF = 1'010'000'000'000'000'017LL; constexpr ll MOD = 1'000'000'007LL; // 1e9 + 7 constexpr ld EPS = 1e-12; constexpr ld PI = 3.14159265358979323846; template istream &operator>>(istream &is, vc &vec) { // vector 入力 for (T &x : vec) is >> x; return is; } template ostream &operator<<(ostream &os, vc &vec) { // vector 出力 (for dump) os << "{"; REP(i, 0, SIZE(vec)) os << vec[i] << (i == i_len - 1 ? "" : ", "); os << "}"; return os; } template ostream &operator>>(ostream &os, vc &vec) { // vector 出力 (inline) REP(i, 0, SIZE(vec)) os << vec[i] << (i == i_len - 1 ? "\n" : " "); return os; } template istream &operator>>(istream &is, pair &pair_var) { // pair 入力 is >> pair_var.first >> pair_var.second; return is; } template ostream &operator<<(ostream &os, pair &pair_var) { // pair 出力 os << "(" << pair_var.first << ", " << pair_var.second << ")"; return os; } // map, um, set, us 出力 template ostream &out_iter(ostream &os, T &map_var) { os << "{"; REPI(itr, map_var) { os << *itr; auto itrcp = itr; if (++itrcp != map_var.end()) os << ", "; } return os << "}"; } template ostream &operator<<(ostream &os, map &map_var) { return out_iter(os, map_var); } template ostream &operator<<(ostream &os, um &map_var) { return out_iter(os, map_var); } template ostream &operator<<(ostream &os, set &set_var) { return out_iter(os, set_var); } template ostream &operator<<(ostream &os, us &set_var) { return out_iter(os, set_var); } template ostream &operator<<(ostream &os, pq &pq_var) { pq pq_cp(pq_var); os << "{"; if (!pq_cp.empty()) { os << pq_cp.top(), pq_cp.pop(); while (!pq_cp.empty()) os << ", " << pq_cp.top(), pq_cp.pop(); } return os << "}"; } // dump #define DUMPOUT cerr void dump_func() { DUMPOUT << endl; } template void dump_func(Head &&head, Tail &&... tail) { DUMPOUT << head; if (sizeof...(Tail) > 0) DUMPOUT << ", "; dump_func(move(tail)...); } // chmax (更新「される」かもしれない値が前) template > bool chmax(T &xmax, const U &x, Comp comp = {}) { if (comp(xmax, x)) { xmax = x; return true; } return false; } // chmin (更新「される」かもしれない値が前) template > bool chmin(T &xmin, const U &x, Comp comp = {}) { if (comp(x, xmin)) { xmin = x; return true; } return false; } // ローカル用 #define DEBUG_ #ifdef DEBUG_ #define DEB #define dump(...) \ DUMPOUT << " " << string(#__VA_ARGS__) << ": " \ << "[" << to_string(__LINE__) << ":" << __FUNCTION__ << "]" << endl \ << " ", \ dump_func(__VA_ARGS__) #else #define DEB if (false) #define dump(...) #endif struct AtCoderInitialize { static constexpr int IOS_PREC = 15; static constexpr bool AUTOFLUSH = false; AtCoderInitialize() { ios_base::sync_with_stdio(false), cin.tie(nullptr), cout.tie(nullptr); cout << fixed << setprecision(IOS_PREC); if (AUTOFLUSH) cout << unitbuf; } } ATCODER_INITIALIZE; string yes = "Yes", no = "No"; // string yes = "YES", no = "NO"; void yn(bool p) { cout << (p ? yes : no) << endl; } /* #endregion */ /* #region Graph */ // グラフ用テンプレ using Weight = ll; using Flow = ll; // エッジ(本来エッジは双方向だが,ここでは単方向で管理) struct Edge { ll src; // エッジ始点となる頂点 ll dst; // エッジ終点となる頂点 Weight weight; // 重み Flow cap; Edge() : src(0), dst(0), weight(0) {} Edge(ll src, ll dst, Weight weight) : src(src), dst(dst), weight(weight) {} Edge(ll src, ll dst, Weight weight, Flow cap) : src(src), dst(dst), weight(weight), cap(cap) {} }; using Node = vc; // 同じ頂点を始点とするエッジ集合 using Graph = vc; // graph[i] := 頂点 i を始点とするエッジ集合 using Array = vc; using Matrix = vc; // デフォルト引数を使うと Language Server が壊れる,たぶん Weight=pll にしたことがあるせい // 双方向のエッジを追加する void add_edge(Graph &g, ll a, ll b, Weight w) { g[a].emplace_back(a, b, w); g[b].emplace_back(b, a, w); } // 双方向のエッジを追加する void add_edge(Graph &g, ll a, ll b) { add_edge(g, a, b, 1LL); } // 単方向のアークを追加する void add_arc(Graph &g, ll a, ll b, Weight w) { g[a].emplace_back(a, b, w); } // 単方向のアークを追加する void add_arc(Graph &g, ll a, ll b, Weight w, Flow cap) { g[a].emplace_back(a, b, w, cap); } // 単方向のアークを追加する void add_arc(Graph &g, ll a, ll b) { g[a].emplace_back(a, b, 1LL); } // Edge 標準出力 ostream &operator<<(ostream &os, Edge &edge) { os << "(" << edge.src << " -> " << edge.dst << ", " << edge.weight << ")"; return os; } struct dinic { int n, s, t; vc level, prog, que; vc> cap, flow; vc> g; Flow inf; dinic(const Graph &graph) : n(graph.size()), cap(n, vc(n)), flow(n, vc(n)), g(n, vc()), inf(std::numeric_limits::max() / 8) { for (int i = 0; i < n; i++) { for (auto &e : graph[i]) { int u = e.src, v = e.dst; Flow c = e.cap; cap[u][v] += c; cap[v][u] += c; flow[v][u] += c; g[u].push_back(v); g[v].push_back(u); } } } inline Flow residue(int u, int v) { return cap[u][v] - flow[u][v]; } Flow solve(int s_, int t_) { this->t = t_, this->s = s_; que.resize(n + 1); Flow res = 0; while (levelize()) { prog.assign(n, 0); res += augment(s, inf); } return res; } bool levelize() { int l = 0, r = 0; level.assign(n, -1); level[s] = 0; que[r++] = s; while (l != r) { int v = que[l++]; if (v == t) break; for (const int &d : g[v]) if (level[d] == -1 && residue(v, d) != 0) { level[d] = level[v] + 1; que[r++] = d; } } return level[t] != -1; } Flow augment(int v, Flow lim) { Flow res = 0; if (v == t) return lim; for (int &i = prog[v]; i < (int)g[v].size(); i++) { const int &d = g[v][i]; if (residue(v, d) == 0 || level[v] >= level[d]) continue; const Flow aug = augment(d, std::min(lim, residue(v, d))); flow[v][d] += aug; flow[d][v] -= aug; res += aug; lim -= aug; if (lim == 0) break; } return res; } }; /* #endregion */ // Problem void solve() { ll n, m; cin >> n >> m; vc s(n); cin >> s; // w -> b で辺を張る ll cnt_w = 0, cnt_b = 0; char w = 'w', b = 'b'; auto idx = [&](ll y, ll x) { return m * y + x; }; ll source = idx(n, 0), sink = idx(n, 1); Graph g(n * m + 2); REP(i, 0, n) REP(j, 0, m) { if (s[i][j] == w) { cnt_w++; add_arc(g, source, idx(i, j), 0, 1); if (i > 0 && s[i - 1][j] == b) add_arc(g, idx(i, j), idx(i - 1, j), 0, 1); if (i < n - 1 && s[i + 1][j] == b) add_arc(g, idx(i, j), idx(i + 1, j), 0, 1); if (j > 0 && s[i][j - 1] == b) add_arc(g, idx(i, j), idx(i, j - 1), 0, 1); if (j < m - 1 && s[i][j + 1] == b) add_arc(g, idx(i, j), idx(i, j + 1), 0, 1); } else if (s[i][j] == b) { cnt_b++; add_arc(g, idx(i, j), sink, 0, 1); } } dinic dn(g); dn.solve(source, sink); ll acc = accumulate(ALL(dn.flow[source]), 0LL); ll ret = acc * 100; cnt_w -= acc, cnt_b -= acc; ll rem2 = min(cnt_w, cnt_b); ret += rem2 * 10; cnt_w -= rem2, cnt_b -= rem2; ret += max(cnt_w, cnt_b); cout << ret << endl; } // entry point int main() { solve(); return 0; }