N - Find a way
思路:两次bfs,分别计算出到达‘@’要花费的时间,然后相加。注意可能到达不了‘@’。
代码:
#include<stdio.h>
#include<string.h>
#include<queue>
using namespace std;
int n,m;
char maze[202][202];
int tag[202][202],c[202][202];//数组tag用来标记是否走过,数组c用来标记需要花的步数
int go[4][2]={{1,0},{0,1},{-1,0},{0,-1}};
struct node
{
int x;
int y;
int step;
};
void bfs(int i,int j)
{
node a,b;
queue<node>q;
a.x=i;
a.y=j;
a.step=0;
q.push(a);
while(!q.empty())
{
a=q.front();
q.pop();
b.step=a.step+1;
for(int i=0;i<4;i++)
{
b.x=a.x+go[i][0];
b.y=a.y+go[i][1];
if(maze[b.x][b.y]=='#'||b.x<0||b.y<0||b.x>=n||b.y>=m)//出界或者是为障碍物
continue;
if(tag[b.x][b.y]!=0)//曾经走过
continue;
tag[b.x][b.y]=1;
c[b.x][b.y]+=b.step;//每个人走的步数相加
q.push(b);
}
}
}
int main()
{
while(~scanf("%d%d",&n,&m))
{
int ma=500;
memset(maze,0,sizeof(maze));
memset(c,0,sizeof(c));
for(int i=0;i<n;i++)
scanf("%s",maze[i]);
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(maze[i][j]=='Y'||maze[i][j]=='M')
{
memset(tag,0,sizeof(tag));
bfs(i,j);
}
}
}
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
if(maze[i][j]=='@'&&c[i][j]<=ma&&c[i][j]!=0)
ma=c[i][j];
}
}
printf("%d\n",ma*11);
}
return 0;
}