标签:des style blog io color ar os sp for
2 5 5 ...** *.**. ..... ..... *.... 1 1 1 1 3 5 5 ...** *.**. ..... ..... *.... 2 1 1 1 3
no yes体现bfs用法#include<cstdio> #include<cstring> #include<queue> #include<algorithm> using namespace std; int n,m,k,sx,sy,ex,ey; bool vis[105][105],ok; char map[105][105]; int to[4][2]={1,0,-1,0,0,1,0,-1}; struct node { int x,y,st;//st为此点已转弯数 }; void dfs() { int i,j; queue<node> q; node a,b,ne; a.x=sx,a.y=sy,a.st=-1;//注意起始点st=-1,无论走哪个方向都不算转弯 vis[sx][sy]=1; q.push(a); while(!q.empty()) { b=q.front(); q.pop(); if(b.x==ex&&b.y==ey&&b.st<=k) { ok=1;break; } ne.st=b.st+1;//每搜完一个方向要转弯st+1,则这一条线上的点st都为ne.st; for(i=0;i<4;i++) { int nx=b.x+to[i][0],ny=b.y+to[i][1]; while(nx>=0&&nx<n&&ny>=0&&ny<m&&map[nx][ny]=='.')//此处用while将这条线上能到的的点全部入队 { if(!vis[nx][ny]) { vis[nx][ny]=1; ne.x=nx,ne.y=ny; q.push(ne); } nx+=to[i][0],ny+=to[i][1];//继续走这条直线 } } } } int main() { int i,j,t; scanf("%d",&t); while(t--) { ok=0; memset(vis,0,sizeof vis); scanf("%d%d",&n,&m); for(i=0;i<n;i++) scanf("%s",map[i]); scanf("%d%d%d%d%d",&k,&sy,&sx,&ey,&ex);//题意横纵坐标是反的 sy--,sx--,ey--,ex--;//改为下标从0开始 dfs(); printf("%s\n",ok?"yes":"no"); } return 0; }
标签:des style blog io color ar os sp for
原文地址:http://blog.csdn.net/u013776243/article/details/41143739