洛谷 P1162. 最近在复习搜索
原题链接
简单
作者:
Cold
,
2021-07-20 10:25:57
,
所有人可见
,
阅读 183
#include<bits/stdc++.h>
using namespace std;
typedef pair<int ,int> PII;
const int N=35;
int g[N][N];
int n;
int bfs()
{
queue<PII> q;
q.push({0,0});
int dx[5]={0,0,-1,1};
int dy[5]={-1,1,0,0};
while(q.size())
{
auto t=q.front();
q.pop();
g[t.first][t.second]=2;
for(int i=0 ;i<4;i++)
{
int x=t.first+dx[i];
int y=t.second+dy[i];
if(x>=0&&x<=n+1&&y>=0&&y<=n+1&&g[x][y]==0)
{
q.push({x,y});
}
}
}
}
int main()
{
cin>>n;
for(int i=1;i<=n;i++)
for(int j=1;j<=n;j++)
cin>>g[i][j];
bfs();
for(int i=1;i<=n;i++)
{
for(int j=1;j<=n;j++)
cout<<2-g[i][j]<<" ";
cout<<endl;
}
return 0;
}