题目描述
由数字0组成的方阵中,有一任意形状闭合圈,闭合圈由数字1构成,围圈时只走上下左右4个方向。现要求把闭合圈内的所有空间都填写成2.例如:6×6 的方阵(n=6),涂色前和涂色后的方阵如下
0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 1 1 0 0 0 0 1 1 1 1 1 1 1
0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 2 2 1 1 1 2 2 2 1 1 2 2 2 2 1 1 1 1 1 1 1
输入
每组测试数据第一行一个整数n(1≤n≤30)
接下来n行,由0和1组成的n×n 的方阵。
方阵内只有一个闭合圈,圈内至少有一个0。
输出
已经填好数字2的完整方阵。
样例输入
6 0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 0 0 1 1 1 0 0 0 1 1 0 0 0 0 1 1 1 1 1 1 1
样例输出
0 0 0 0 0 0 0 0 1 1 1 1 0 1 1 2 2 1 1 1 2 2 2 1 1 2 2 2 2 1 1 1 1 1 1 1
提示
1≤n≤30
参考代码:
#include
using namespace std;
int n;
int q[22500][2],hh,tt,kx,ky,gx,gy;
int dx[]={1,0,-1,0};
int dy[]={0,1,0,-1};
int d[150][150];
char a[150][150];
bool b[150][150];
bool around(int y,int x){
bool s=true;
if(y<=0||y>=n-1||x<=0||x>=n-1)
return false;
b[y][x]=true;
if(a[y+1][x]=='0'&&!b[y+1][x])
s=s&&around(y+1,x);
if(a[y][x+1]=='0'&&!b[y][x+1])
s=s&&around(y,x+1);
if(a[y-1][x]=='0'&&!b[y-1][x])
s=s&&around(y-1,x);
if(a[y][x-1]=='0'&&!b[y][x-1])
s=s&&around(y,x-1);
return s;
}
void bfs(){
while(hh!=tt){
kx=q[hh][1];
ky=q[hh][0];
a[ky][kx]='2';
hh++;
for(int i=0;i<4;i++){
int xx=kx+dx[i];
int yy=ky+dy[i];
if(xx>=0&&xx
tt++;
q[tt-1][0]=yy;
q[tt-1][1]=xx;
d[yy][xx]=d[ky][kx]+1;
}
}
}
return;
}
int main(){
cin>>n;
for(int i=0;i
for(int i=0;i
if(around(i,j)){
q[0][0]=i;
q[0][1]=j;
d[i][j]=1;
tt++;
bfs();
for(int i2=0;i2
for(int j2=0;j2
}
return 0;
}
return 0;
}