#include #include using namespace std; using namespace atcoder; #define rep(i, n) REP(i, 0, n) #define REP(i, s, e) for (int i = (s); i < (int)(e); i++) #define repr(i, n) REPR(i, n, 0) #define REPR(i, s, e) for (int i = (int)(s - 1); i >= (int)(e); i--) #define all(r) r.begin(), r.end() #define rall(r) r.rbegin(), r.rend() typedef long long ll; typedef vector vi; typedef vector vl; template T chmax(T& a, const U& b) { if (a >= b) return false; a = b; return true; } template T chmin(T& a, const U& b) { if (a <= b) return false; a = b; return true; } void yes_no(bool f, string yes = "Yes", string no = "No") { cout << (f ? yes : no) << "\n"; } void solve() { int n; cin >> n; vector s(n); rep(i, n) cin >> s[i]; ll ans = 0; using P = pair; vector

pos, neg; rep(i, n) { vi v; rep(j, 2 * n) if (s[i][j] == '.') v.emplace_back(j); int sz = v.size(); rep(j, sz) ans += v[j] - j; if (sz > n) pos.emplace_back(i, sz - n); else if (sz < n) neg.emplace_back(i, n - sz); } // cout << "pos" << '\n'; // for (auto&& [x, y] : pos) cout << x << " " << y << '\n'; // cout << "neg" << '\n'; // for (auto&& [x, y] : neg) cout << x << " " << y << '\n'; while (pos.size()) { auto [i, x] = pos.back(); pos.pop_back(); auto [j, y] = neg.back(); neg.pop_back(); ans += abs(i - j) + abs(x + y) - 1; if (x > 1) pos.emplace_back(i, x - 1); if (y > 1) neg.emplace_back(j, y - 1); } cout << ans << "\n"; } int main() { cin.tie(0); ios::sync_with_stdio(false); int t = 1; // cin >> t; rep(ti, t) solve(); return 0; }