AcWing 1101. 献给阿尔吉侬的花束
原题链接
简单
作者:
xhQYm
,
2020-01-10 17:49:12
,
所有人可见
,
阅读 881
C++ 代码
#include <iostream>
#include <queue>
#include <cstring>
using namespace std;
int n,m,sx,sy,fx,fy,vis[201][201];
char g[201][201];
const int dx[4]={-1,1,0,0};
const int dy[4]={0,0,-1,1};
void bfs(int x,int y)
{
queue<int> q1,q2;
q1.push(x);
q2.push(y);
while(!q1.empty())
{
int nowx=q1.front(),nowy=q2.front();
q1.pop();q2.pop();
if(nowx==fx and nowy==fy)
{
cout<<vis[fx][fy]<<endl;
return;
}
else
{
for(int i=0;i<4;i++)
{
int tx=nowx+dx[i];
int ty=nowy+dy[i];
if(tx>=1 and tx<=n and ty>=1 and ty<=m and !vis[tx][ty] and g[tx][ty]!='#')
{
vis[tx][ty]=vis[nowx][nowy]+1;
q1.push(tx);
q2.push(ty);
}
}
}
}
}
int main()
{
int t;
cin>>t;
for(int w=1;w<=t;w++)
{
memset(vis,0,sizeof(vis));
cin>>n>>m;
for(int i=1;i<=n;i++)
for(int j=1;j<=m;j++)
{
cin>>g[i][j];
if(g[i][j]=='S')
sx=i,sy=j;
if(g[i][j]=='E')
fx=i,fy=j;
}
bfs(sx,sy);
if(vis[fx][fy]==0)
cout<<"oop!"<<endl;
}
return 0;
}
%%%