A7991迷宫——题解
2024-09-26 18:14:34
发布于:湖南
5阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
//#define int long long
int n,m;
struct node{
int x,y;
};
queue<node> q;
char mp[5005][5005];
bool vis[5005][5005];
int dx[4]={-1,1,0,0};
int dy[4]={0,0,-1,1};
bool inmp(int x,int y){
return x>=1 && x<=n && y>=1 && y<=m && vis[x][y]==false && mp[x][y]=='.';
}
void bfs(int x,int y){
q.push({x,y});
vis[x][y]=true;
while(!q.empty()){
node t=q.front();
q.pop();
char cx=t.x;
char cy=t.y;
for(int i=0;i<4;i++){
int xx=cx+dx[i];
int yy=cy+dy[i];
if(inmp(xx,yy)==true){
q.push({xx,yy});
vis[xx][yy]=true;
}
}
}
}
int main(){
cin>>n>>m;
int a,b,c,d;
cin>>a>>b>>c>>d;
for(int i=1;i<=n;i++){
for(int j=1;j<=m;j++){
cin>>mp[i][j];
}
}
bfs(a,b);
if(vis[c][d]==true){
cout<<"YES";
}
else{
cout<<"NO";
}
return 0;
}
这里空空如也
有帮助,赞一个