http://acm.hdu.edu.cn/showproblem.php?pid=2425
题意:有四种材质的路,三种path,sand,tree可以通过,通过时间依此增大;注意刚开始的地点时间不用计算,终点位置通过的时间需要加上
分析:这个不能用到达最短步数来衡量,需要遍历整个迷宫找出最小时间
计算最短时间小迷宫可以用此法,大迷宫需用优先队列:http://blog.csdn.net/killua_99/article/details/9898751
#include<iostream>
#include<cstdio>
#include<queue>
using namespace std;
const int NM=25;
const int MAX=0x3fffffff;
char str[NM][NM];
int time[NM][NM],n,m,vp,vs,vt,x1,x2,y1,y2;
int a[4][2]={-1,0,1,0,0,1,0,-1};
struct Node{
int x,y;
};
void BFS()
{
queue<Node>q1;
Node t,p;
int i,j,temp;
for(i=0;i<n;i++)
for(j=0;j<m;j++)
time[i][j]=MAX;
time[x1][y1]=0;
t.x=x1,t.y=y1;
q1.push(t);
while(!q1.empty())
{
t=q1.front();q1.pop();
for(i=0;i<4;i++)
{
p.x=t.x+a[i][0],p.y=t.y+a[i][1];
if(p.x>=0&&p.x<n&&p.y>=0&&p.y<m&&str[p.x][p.y]!='@')
{
if(str[p.x][p.y]=='#') temp=vp;
else if(str[p.x][p.y]=='.') temp=vs;
else if(str[p.x][p.y]=='T') temp=vt;
if(time[t.x][t.y]+temp<time[p.x][p.y]) //将最短时间更新并加入队列
{
time[p.x][p.y]=time[t.x][t.y]+temp;
q1.push(p);
}
}
}
}
}
int main()
{
int i,k=1;
while(scanf("%d%d",&n,&m)!=EOF)
{
scanf("%d%d%d",&vp,&vs,&vt);
for(i=0;i<n;i++)
scanf("%s",str[i]);
scanf("%d%d%d%d",&x1,&y1,&x2,&y2);
BFS();
printf("Case %d: ",k++);
if(time[x2][y2]<MAX) printf("%d\n",time[x2][y2]);
else printf("-1\n");
}
return 0;
}