이 제출은 이전 버전의 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];
int ans=0;
int n,m;
void fun(int y, int x, int w){
ans=max(ans,w);
for(int i=y;i<=n;i++){
if(i==y){
for(int j=x;j<=m;j++){
if(arr[i][j]=='R' and arr[i][j+1]=='G' and arr[i][j+2]=='W'){
arr[i][j]='X';
arr[i][j+1]='X';
arr[i][j+2]='X';
fun(i,j,w+1);
arr[i][j]='R';
arr[i][j+1]='G';
arr[i][j+2]='W';
}
if(arr[i][j]=='R' and arr[i+1][j]=='G' and arr[i+2][j]=='W'){
arr[i][j]='X';
arr[i+1][j]='X';
arr[i+2][j]='X';
fun(i,j,w+1);
arr[i][j]='R';
arr[i+1][j]='G';
arr[i+2][j]='W';
}
}
}
else{
for(int j=1;j<=m;j++){
if(arr[i][j]=='R' and arr[i][j+1]=='G' and arr[i][j+2]=='W'){
arr[i][j]='X';
arr[i][j+1]='X';
arr[i][j+2]='X';
fun(i,j,w+1);
arr[i][j]='R';
arr[i][j+1]='G';
arr[i][j+2]='W';
}
if(arr[i][j]=='R' and arr[i+1][j]=='G' and arr[i+2][j]=='W'){
arr[i][j]='X';
arr[i+1][j]='X';
arr[i+2][j]='X';
fun(i,j,w+1);
arr[i][j]='R';
arr[i+1][j]='G';
arr[i+2][j]='W';
}
}
}
}
}
signed main(){
cin>>n>>m;
int cnt=0;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>arr[i][j];
}
}
fun(1,1,0);
cout<<ans;
}
컴파일 시 표준 에러 (stderr) 메시지
dango_maker.cpp: In function 'int main()':
dango_maker.cpp:64:9: warning: unused variable 'cnt' [-Wunused-variable]
64 | int cnt=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... |