#include using namespace std; #define rep(i,n) for(int (i)=0;(i)<(n);(i)++) #define rrep(i,n) for(int (i)=((n)-1);(i)>=0;(i)--) #define itn int #define all(x) (x).begin(),(x).end() #define F first #define S second const int INF = -1145141919; const int MOD = 1000000007; template inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; } //https://www.creativ.xyz/dump-cpp-652/ #define repi(itr, ds) for (auto itr = ds.begin(); itr != ds.end(); itr++) // vector template istream &operator>>(istream &is, vector &vec) { for (T &x : vec) is >> x; return is; } // pair template ostream &operator<<(ostream &os, pair &pair_var) { os << "(" << pair_var.first << ", " << pair_var.second << ")"; return os; } // vector template ostream &operator<<(ostream &os, const vector &vec) { os << "{"; for (int i = 0; i < vec.size(); i++) { os << vec[i] << (i + 1 == vec.size() ? "" : ", "); } os << "}"; return os; } // map template ostream &operator<<(ostream &os, map &map_var) { os << "{"; repi(itr, map_var) { os << *itr; itr++; if (itr != map_var.end()) os << ", "; itr--; } os << "}"; return os; } // set template ostream &operator<<(ostream &os, set &set_var) { os << "{"; repi(itr, set_var) { os << *itr; itr++; if (itr != set_var.end()) os << ", "; itr--; } os << "}"; return os; } #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(std::move(tail)...); } #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 int main(void) { cin.tie(0); ios::sync_with_stdio(false); int h,w; cin>>h>>w; vector > g(h,vector (w)); rep(i,h)rep(j,w) cin>>g[i][j]; vector >> d(h,vector >(w, {INF, INF})); //priority_queue > q; priority_queue > q; q.push(make_tuple(-0,0,0, 0, 0)); d[0][0] = {0, 0}; while(!q.empty()){ auto tmp = q.top(); q.pop(); int y = get <1>(tmp), x = get <2>(tmp), cost = get <3>(tmp), add = get <4>(tmp); int al = get <0>(tmp); if(y+1 < h){ if(g[y+1][x] == '.'){ if(cost + add + 1 < d[y+1][x].F + d[y+1][x].S){ d[y+1][x] = {cost+1, add}; q.push(make_tuple(-(cost +1+add), y+1, x , cost+1, add)); } }else{ if((cost + 1)*2 + add < d[y+1][x].F + d[y+1][x].S){ d[y+1][x] = {cost+1, add + cost + 1}; q.push(make_tuple(-(add + cost+1+ cost +1),y+1, x , cost+1, add + cost + 1)); } } } if(y-1>=0){if(g[y-1][x] == '.'){ if(cost + add + 1 < d[y-1][x].F + d[y-1][x].S){ d[y-1][x] = {cost+1, add}; q.push(make_tuple(-(cost+1+add), y-1, x , cost+1, add)); } }else{ if((cost + 1)*2 + add < d[y-1][x].F + d[y-1][x].S){ d[y-1][x] = {cost+1, add + cost + 1}; q.push(make_tuple(-(add + 2*(cost + 1)),y-1, x , cost+1, add + cost + 1)); } } } if(x-1>=0) {if(g[y][x-1] == '.'){ if(cost + add + 1 < d[y][x-1].F + d[y][x-1].S){ d[y][x-1] = {cost+1, add}; q.push(make_tuple((-add+cost+1),y, x-1 , cost+1, add)); } }else{ if((cost + 1)*2 + add < d[y][x-1].F + d[y][x-1].S){ d[y][x-1] = {cost+1, add + cost + 1}; q.push(make_tuple(-(add + 2*(cost+1)),y, x-1 , cost+1, add + cost + 1)); } } } if(x+1>=0) {if(g[y][x+1] == '.'){ if(cost + add + 1 < d[y][x+1].F + d[y][x+1].S){ d[y][x+1] = {cost+1, add}; q.push(make_tuple(-(add+cost+1),y, x+1 , cost+1, add)); } }else{ if((cost + 1)*2 + add < d[y][x+1].F + d[y][x+1].S){ d[y][x+1] = {cost+1, add + cost + 1}; q.push(make_tuple(-(add + 2*(cost+1)), y, x+1 , cost+1, add + cost + 1)); } } } } cout<