http://acm.hdu.edu.cn/showproblem.php?pid=4198
题意:
给出r*c的图 以及时间k
图中'.'代表通路 '#'代表障碍物
当时间为k的倍数时 障碍物消失
问从起始点到终点的最短时间
代码:
#include<iostream>
#include<string>
#include<queue>
#define MAX 102
using namespace std;
struct node
{
int x,y,time;
};
queue<node> q;
char map[MAX][MAX];
char vist[MAX][MAX][12]; //vist[i][j][time]代表time%k时刻在(i,j)点
int s_x,s_y,e_x,e_y;
int r,c,k;
int dir[4][2]={{0,-1},{-1,0},{0,1},{1,0}};
int BFS()
{
node now,next;
for(int i=0;i<r;i++)
for(int j=0;j<c;j++)
for(int k=0;k<12;k++)
vist[i][j][k]=0;
while(!q.empty()) q.pop();
now.x=s_x;
now.y=s_y;
now.time=0;
q.push(now);
vist[s_x][s_y][0]=1;
while(!q.empty())
{
now=q.front();
q.pop();
for(int i=0;i<4;i++)
{
next.x=now.x+dir[i][0];
next.y=now.y+dir[i][1];
next.time=now.time+1;
if(next.x<0 ||next.x>=r || next.y<0 || next.y>=c) continue;
if(map[next.x][next.y]=='#' && next.time%k!=0) continue;
if(vist[next.x][next.y][next.time%k]) continue;
if(next.x==e_x && next.y==e_y) return next.time;
else
{
q.push(next);
vist[next.x][next.y][next.time%k]=1;
}
}
}
return -1;
}
int main()
{
int t;
while(cin>>t!=NULL)
{
while(t--)
{
cin>>r>>c>>k;
for(int i=0;i<r;i++)
{
cin>>map[i];
for(int j=0;j<c;j++)
{
if(map[i][j]=='Y')
{
s_x=i;
s_y=j;
}
else if(map[i][j]=='G')
{
e_x=i;
e_y=j;
}
}
}
int ans=BFS();
if(ans!=-1)
cout<<ans<<endl;
else
cout<<"Please give me another chance!"<<endl;
}
}
return 0;
}
思路:
开三维数组vist来记录确定时刻(i,j)点的情况