bzoj 2252 [ 2010 Beijing wc ] 矩陣距離 —— 多源bfs
阿新 • • 發佈:2018-07-28
print front make turn online targe push style ron
題目:https://www.lydsy.com/JudgeOnline/problem.php?id=2252
又沒能自己想出來...
一直在想如何從每個1開始廣搜更新答案,再剪剪枝,什麽遇到1就不走了...
然而實際上直接多源bfs,從所有1一起開始,因為只需要找到0碰到的第一個1即可;
這樣搜一遍就可以,復雜度很美。
代碼如下:
#include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<queue> using namespacestd; int const maxn=1005; int n,m,a[maxn][maxn],b[maxn][maxn],dx[5]={1,0,-1,0},dy[5]={0,1,0,-1}; bool vis[maxn][maxn]; queue<pair<int,int> >q; int main() { scanf("%d%d",&n,&m); for(int i=1;i<=n;i++) for(int j=1;j<=m;j++) { scanf("%1d",&a[i][j]);if(a[i][j])q.push(make_pair(i,j)),vis[i][j]=1; } while(q.size()) { int x=q.front().first,y=q.front().second; q.pop(); for(int i=0;i<4;i++) { int tx=x+dx[i],ty=y+dy[i]; if(vis[tx][ty]||tx<1||ty<1||tx>n||ty>m)continue; b[tx][ty]=b[x][y]+1; vis[tx][ty]=1; q.push(make_pair(tx,ty)); } } for(int i=1;i<=n;i++) { for(int j=1;j<=m;j++) printf("%d ",b[i][j]); printf("\n"); } return 0; }
bzoj 2252 [ 2010 Beijing wc ] 矩陣距離 —— 多源bfs