[Codeforces] Round #689 (Div. 2, based on Zed Code Competition) B. Find the Spruce

Codeforces Round #689 (Div. 2, based on Zed Code Competition) B. Find the Spruce

  • Time : O(nm^2)
  • Space : O(m)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#include <bits/stdc++.h>

#pragma optimization_level 3
#pragma GCC optimize("Ofast,no-stack-protector,unroll-loops,fast-math,O3")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx")
#pragma GCC optimize("Ofast")//Comment optimisations for interactive problems (use endl)
#pragma GCC target("avx,avx2,fma")
#pragma GCC optimization ("unroll-loops")

struct PairHash {inline std::size_t operator()(const std::pair<int,int> & v) const {return v.first*31+v.second;}};

#define MAX_N 202020
#define INF 987654321
#define EPS 1e-9
#define ll long long
#define pll pair<ll, ll>
#define vpll vector<pll>
#define vall3 vector<array<ll,3>>
#define all3 array<ll,3>
#define all5 array<ll,5>
#define vall5 vector<all5>
#define vll vector<ll>
#define vi vector<int>
#define vs vector<string>
#define usll unordered_set<ll>
#define uspll unordered_set<pll, PairHash>
#define umll unordered_map<ll,ll>
#define vvs vector<vs>
#define vvll vector<vll>
#define all(a) begin(a), end(a)
#define rall(a) rbegin(a), rend(a)

using namespace std;
ll solve(vs& A) {
ll res = 0, m = A[0].size();
vll dp(m);
for(auto& r : A) {
for(ll i = 0; i < m; i++) {
if(r[i] == '.') dp[i] = 0;
else dp[i] += 1;
}
for(ll i = 0; i < m; i++) {
ll now = min({dp[i], i + 1, m - i});
for(ll j = 0; j < now; j++) {
if(dp[i + j] >= (now - j) and dp[i - j] >= (now - j)) continue;
now = min(dp[i + j], dp[i - j]) + j;
}
res += now;
}
}
return res;
}

int main() {
ios_base::sync_with_stdio(0);
cin.tie(0);
ll tc = 1;
cin>>tc;
for(ll i = 1; i <= tc; i++) {
ll n,m;
cin>>n>>m;
vs A(n);
for(ll j = 0; j < n; j++) cin>>A[j];
cout<<solve(A)<<endl;
}
return 0;
}
Author: Song Hayoung
Link: https://songhayoung.github.io/2022/06/18/PS/Codeforces/div2-689-b/
Copyright Notice: All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.