#include "bits/stdc++.h" using namespace std; /* macro */ #define rep(i,a,b) for(int i=a;i b; i--) #define int long long #define exist(s,e) ((s).find(e)!=(s).end()) #define all(v) (v).begin(), (v).end() #define each(s,itr) for(auto (itr) = s.begin(); (itr) != s.end(); (itr)++) #define sum(v) accumulate(all(v), (0LL)) #define isin(a, b, c) (b <= a && a <= c) #define println cout << "\n"; #define sz(v) (int)v.size() #define bin(x) static_cast >(x) /* alias */ template using vec = vector; typedef vector vi; typedef pair pi; typedef tuple ti; typedef map mi; typedef set si; /* constant */ const int inf = 1LL << 62; const int mod = 1e9 + 7; const int dx[8]={1,0,-1,0,-1,1,-1,1}; const int dy[8]={0,1,0,-1,-1,-1,1,1}; const string alphabet = "abcdefghijklmnopqrstuvwxyz"; /* io_method */ int input(){int tmp;cin >> tmp;return tmp;} string raw_input(){string tmp;cin >> tmp;return tmp;} template void printx(T n){cout << n;} template void printx(pair p){cout << "(" << p.first << "," << p.second << ")";} template void printx(tuple t){cout << "{" << get<0>(t) << "," << get<1>(t) <<"," << get<2>(t) << "}" << endl;} template void printx(vector v){cout << "{";rep(i,0,v.size()){printx(v[i]);if(i != v.size()-1)printx(",");}cout << "}";} template void print(T n){printx(n);cout << endl;} template void print(set s){cout << "{";each(s, e){if(e != s.begin()) printx(",");printx(*e);}cout << "}" << endl;} template void print(map mp){cout << "{";each(mp, e){cout << "(" << e -> first << "," << e -> second << ")";}cout << "}" << endl;} template void printans(vec v){rep(i,0,sz(v)){cout << v[i] << (i == sz(v) - 1 ? "" : " ");}cout << endl;} /* general_method */ templatebool chmax(T &a, const T &b) { if (abool chmin(T &a, const T &b) { if (bT cut(T &a, int l, int r){return T(a.begin()+l, a.begin()+r);} /* math_method */ int ceil(int a, int b){return a / b + (a % b > 0);} /* main */ int n, m; char field[50][50]; int source, sink; int black = 0, white = 0; struct edge{int to, cap, rev;}; vec> edges(2550); int pos_to_v(int y, int x){ return y * m + x; } void in(){ cin >> n >> m; rep(i,0,n){ rep(j,0,m){ cin >> field[i][j]; } } source = n * m + 10; sink = source + 1; rep(i,0,n){ rep(j,0,m){ if(field[i][j] == '.') continue; int f = pos_to_v(i, j); // black to sink if(field[i][j] == 'b'){ black++; edges[f].push_back((edge){sink, 1, sz(edges[sink])}); edges[sink].push_back((edge){f, 0, sz(edges[f]) - 1}); continue; } white++; //source to white edges[source].push_back((edge){f, 1, sz(edges[f])}); edges[f].push_back((edge){source, 0, sz(edges[source]) - 1}); //white to black rep(k,0,4){ int ty = i + dy[k]; int tx = j + dx[k]; if(!isin(ty,0,n-1) or !isin(tx,0,m-1) or field[ty][tx] == '.') continue; int t = pos_to_v(ty, tx); edges[f].push_back((edge){t, 1, sz(edges[t])}); edges[t].push_back((edge){f, 0, sz(edges[f]) - 1}); } } } } bool visited[2550]; int dfs(int v, int t, int f){ if(v == t) return f; visited[v] = true; rep(i,0,sz(edges[v])){ edge e = edges[v][i]; if(!visited[e.to] && e.cap > 0){ int d = dfs(e.to, t, min(f, e.cap)); if(d > 0){ edges[v][i].cap -= d; edges[e.to][e.rev].cap += d; return d; } } } return 0; } void solve(){ int flow = 0; while(true){ memset(visited, false, sizeof(visited)); int f = dfs(source, sink, inf); if(f) flow += f; else break; } int ans = flow * 100; ans += (min(white, black) - flow) * 10; ans += abs(white - black); print(ans); } signed main(){ cin.tie(0); ios::sync_with_stdio(false); in(); solve(); }