Submission #398001

#TimeUsernameProblemLanguageResultExecution timeMemory
398001lukameladzeDango Maker (JOI18_dango_maker)C++14
0 / 100
1 ms332 KiB
# include <bits/stdc++.h> #define f first #define s second #define pb push_back using namespace std; const int N=3005; long long n,m,mx[2*N],dp[N][N][4],ans;; char ch[N][N]; int check(int i, int j) { if (ch[i][j]=='G' && ch[i][j-1]=='R' && ch[i][j+1]=='W') return 1; else return 0; } int check1(int i, int j) { if (ch[i][j]=='G' && ch[i-1][j]=='R' && ch[i+1][j]=='W') return 1; else return 0; } int main() { cin>>n>>m; for (int i=1; i<=n; i++) { for (int j=1; j<=m; j++) { cin>>ch[i][j]; } } for (int i=1; i<=n; i++) { for (int j=1; j<=m; j++) { if (check(i,j)) { dp[i][j][1]=max(dp[i-1][j+1][0],dp[i-1][j+1][1])+1; //dp[i][j][1]=max(dp[i][j][1],dp[i-1][j+1][2]); } if (check1(i,j)){ dp[i][j][2]=max(dp[i-1][j+1][0],dp[i-1][j+1][1])+1; //dp[i][j][2]=max(dp[i][j][1],dp[i-1][j+1][1]); } dp[i][j][0]=max(dp[i-1][j+1][0],max(dp[i-1][j+1][1],dp[i-1][j+1][2])); mx[i+j]=max(mx[i+j], max(dp[i][j][0],max(dp[i][j][1],dp[i][j][2]))); } } for (int i=1; i<=n+m; i++) { ans+=mx[i]; } cout<<ans<<endl; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...