标签:
2 5 5 ...** *.**. ..... ..... *.... 1 1 1 1 3 5 5 ...** *.**. ..... ..... *.... 2 1 1 1 3
no yes
#include <iostream> #include<cstdio> #include<cstring> #include<queue> using namespace std; int n,m,sx,sy,tx,ty,i,k,t; char mp[105][105]; int vis[105][105]; int dr[4][2]={{1,0},{0,1},{-1,0},{0,-1} }; struct node { int x,y,k; }; int check(int x,int y) { if (x>=0 && x<n && y>=0 && y<m) return 1; else return 0; } int bfs() { node p; queue<node> s; p.x=sx; p.y=sy; p.k=-1; s.push(p); vis[sx][sy]=1; while(!s.empty()) { node q=s.front(); s.pop(); for(int i=0;i<4;i++) { int xx=q.x+dr[i][0]; int yy=q.y+dr[i][1]; while(mp[xx][yy]!=‘*‘ && check(xx,yy)) { p.x=xx; p.y=yy; p.k=q.k+1; if (!vis[xx][yy]) { s.push(p); vis[xx][yy]=1; } if (xx==tx && yy==ty) if (p.k<=k)return 1; else return 0; xx=xx+dr[i][0]; yy=yy+dr[i][1]; } } } return 0; } int main() { scanf("%d",&t); for(;t>0;t--) { scanf("%d%d",&n,&m); for(i=0;i<n;i++) scanf("%s",&mp[i]); scanf("%d%d%d%d%d",&k,&sy,&sx,&ty,&tx); sy--; sx--; ty--; tx--; memset(vis,0,sizeof(vis)); if(bfs())printf("yes\n"); else printf("no\n"); } return 0; }
标签:
原文地址:http://www.cnblogs.com/stepping/p/5669062.html