This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
//by szh
#include<bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define pii pair<int,int>
#define pll pair<long long,long long>
#define pb push_back
#define debug(x) cerr<<#x<<"="<<x<<endl
#define pq priority_queue
#define inf 0x3f
#define rep(i,a,b) for (int i=a;i<(b);i++)
#define MP make_pair
#define SZ(x) (int(x.size()))
#define ll long long
#define mod 1000000007
#define ALL(x) x.begin(),x.end()
void inc(int &a,int b) {a=(a+b)%mod;}
void dec(int &a,int b) {a=(a-b+mod)%mod;}
int lowbit(int x) {return x&(-x);}
ll p0w(ll base,ll p) {ll ret=1;while(p>0){if (p%2ll==1ll) ret=ret*base%mod;base=base*base%mod;p/=2ll;}return ret;}
int n,m;
int grid[5][5];
int main() {
// freopen("input.txt","r",stdin);
std::ios::sync_with_stdio(false);cin.tie(0);
cin>>n>>m;
memset(grid,-1,sizeof(grid));
rep(i,0,n) {
string s;cin>>s;
rep(j,0,m) {
if (s[j]=='R') grid[i][j]=0;
else if (s[j]=='G') grid[i][j]=1;
else grid[i][j]=2;
}
}
int ans = 0;
rep(mask,0,(1<<(n*m))) {
int cur=0;
rep(i,0,n)
rep(j,0,m) {
if ( ((mask>>(i*m+j))&1) and grid[i][j]==0 and ((mask>>(i*m+j+1))&1) and grid[i][j+1]==1 and ((mask>>(i*m+j+2))&1) and grid[i][j+2]==2 ) cur++;
if ( ((mask>>(i*m+j))&1)==0 and grid[i][j]==0 and ((mask>>(i*m+m+j))&1)==0 and grid[i+1][j]==1 and ((mask>>(i*m+m+m+j))&1)==0 and grid[i+2][j]==2 ) cur++;
}
ans=max(ans,cur);
}
cout<<ans;
return 0;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |