이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
using namespace std;
#define int long long
#define ff first
#define ss second
#define double long double
const int N=3e3+5;
char arr[N][N];
signed main(){
int n,m;
cin>>n>>m;
int cnt=0;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>arr[i][j];
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=m-2;j++){
if(arr[i][j]=='R' and arr[i][j+1]=='G' and arr[i][j+2]=='W' ){
cnt++;
arr[i][j]='X';
arr[i][j+1]='X';
arr[i][j+2]='X';
}
}
}
for(int j=1;j<=m;j++){
for(int i=1;i<=n-2;i++){
if(arr[i][j]=='R' and arr[i+1][j]=='G' and arr[i+2][j]=='W' ){
cnt++;
arr[i][j]='X';
arr[i+1][j]='X';
arr[i+2][j]='X';
}
}
}
cout<<cnt;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |