记录编号 |
519642 |
评测结果 |
AAAAAAAAAAAAAAAA |
题目名称 |
[POI 1999] 位图 |
最终得分 |
100 |
用户昵称 |
云卷云书 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.138 s |
提交时间 |
2018-11-01 20:40:24 |
内存使用 |
0.50 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<queue>
using namespace std;
int n,m,l[5]={0,1,0,-1},r[5]={1,0,-1,0},ans[200][200];
struct p{int x,y;};
char c[200][200];
queue<p> s;
int main(){
freopen("bit.in","r",stdin);
freopen("bit.out","w",stdout);
cin>>n>>m;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>c[i][j];
c[i][j]-='0';
if(c[i][j]==1){
s.push((p){i,j});
ans[i][j]=0;
}
}
}
while(!s.empty()){
p f=s.front();
s.pop();
for(int i=0;i<=3;i++){
int xx=f.x+l[i];
int yy=f.y+r[i];
if(xx>0&&xx<=n&&yy>0&&yy<=m&&c[xx][yy]==0){
c[xx][yy]=1;
ans[xx][yy]=ans[f.x][f.y]+1;
s.push((p){xx,yy});
}
}
}
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cout<<ans[i][j]<<' ';
}
cout<<endl;
}
return 0;
}