This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
#define ll long long
#define ld long double
#define cd complex<ld>
#define pll pair<ll,ll>
#define pii pair<int,int>
#define pld pair<ld,ld>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
using namespace std;
ll n, m;
char c[3005][3005];
ll dp[2][3005][3005];
ll ans[3005][3005];
bool chk[2][3005][3005];
//vector<pair<ll,pll>> T[2][3005][3005];
void solve()
{
cin >> n >> m;
for(int i = 1; i<= n; i++)
{
for(int j = 1; j<= m; j++) cin >> c[i][j];
}
for(int i = 1 ;i<= n; i++)
{
for(int j = 3; j<= m; j++)
{
if(c[i][j-1]=='G'&&c[i][j-1]!=c[i][j-2]&&c[i][j-2]!=c[i][j]&&c[i][j]!=c[i][j-1]) chk[0][i][j] = 1;
}
}
for(int i = 3 ;i<= n; i++)
{
for(int j = 1; j<= m; j++)
{
if(c[i-1][j]=='G'&&c[i-1][j]!=c[i-2][j]&&c[i][j]!=c[i-2][j]&&c[i][j]!=c[i-1][j]) chk[1][i][j] = 1;
}
}
for(int i = 1; i<= n; i++)
{
for(int j = 1; j<= m; j++)
{
dp[1][i][j] = chk[1][i][j]+dp[1][i-1][j+1];
if(i-3>=0) dp[1][i][j] = max(dp[1][i][j], dp[0][i-3][j+3]+chk[1][i][j]);
dp[0][i][j] = max(dp[0][i-1][j+1]+chk[0][i][j],dp[1][i][j]);
//cout << i << " " << j << " " << dp[0][i][j] << " " << dp[1][i][j] << " " << chk[0][i][j] << " " << chk[1][i][j] << " " << dp[0][i-1][j+1]<< "\n";
}
}
ll ans = 0;
for(int i = 1; i<= n; i++)
{
for(int j = 1 ; j<= m; j++)
{
if(j==1||i==n)
{
ans += dp[0][i][j];
}
//cout << i << " " << j << " " << dp[0][i][j] << " " << dp[1][i][j] << " " << chk[0][i][j] << " " << chk[1][i][j] << " " << dp[0][i-1][j+1]<< "\n";
}
}
cout << ans;
}
signed main()
{
//freopen("IN.txt","r",stdin);
//freopen("OUT.txt","w",stdout);
ios_base::sync_with_stdio(NULL) ; cin.tie(nullptr) ; cout.tie(nullptr);
ll t = 1;
//cin >> t;
while(t--)
{
solve();
cout << "\n";
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |