이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int MAX = 1e3+5;
int M,N,ans,res;
char F[MAX][MAX],K[2][2],B[3]={'J','O','I'};
bool C[MAX][MAX];
bool match(int a, int b, int x, int y, char c)
{
if(a<1 || a>=M || b<1 || b>=N)
return false;
for(int i=0; i<2; i++)
for(int j=0; j<2; j++) {
if(a+i==x && b+j==y) {
if(c!=K[i][j])
return false;
} else if(F[a+i][b+j]!=K[i][j])
return false;
}
return true;
}
int main()
{
//freopen("input.txt","r",stdin);
ios_base::sync_with_stdio(0),cin.tie(0);
cin >> M >> N;
for(int i=1; i<=M; i++)
for(int j=1; j<=N; j++)
cin >> F[i][j];
for(int i=0; i<2; i++)
for(int j=0; j<2; j++)
cin >> K[i][j];
for(int i=0; i<=M; i++)
for(int j=0; j<=N; j++) {
C[i][j] = match(i,j,i,j,F[i][j]);
ans += C[i][j];
}
for(int i=1; i<=M; i++)
for(int j=1; j<=N; j++)
for(int k=0; k<3; k++) {
res = 0;
for(int x=-1; x<=0; x++)
for(int y=-1; y<=0; y++)
res += match(i+x,j+y,i,j,B[k]) - C[i+x][j+y];
ans = max(ans,ans+res);
}
cout << ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |