POJ-3081-Children of the Candy Corn

378 篇文章 0 订阅

这个题是一个DFS加BFS吧。

大意是说给你一个迷宫,要求你求出从起点到终点的三种最短路径。

第一种:选择尽量沿着左边的墙走,即优先考虑向左走。

第二种:选择尽量沿着右边的墙走,即悠闲考虑向右走。

第三种:无任何限制下的最短路径。

这个题最后所求的步数起点和终点都要算入计数,即其求的是经过多少个方格。

处理的方法是分别对于第一种和第二种进行优先逆时针和顺时针转一次方向进行搜索(保证其最优策略),后面再向相反的方向转回来即可,共需要4次,从而得到搜索的答案。

第三种情况我依然采用的是BFS搜索的方法。

代码如下:

#include<cstdio>
#include<cstring>
#include<iostream>
#include<queue>
#define MAX 45
using namespace std;
int map[MAX][MAX],use[MAX][MAX],w,h,sx,sy,ex,ey,flag,ansa,ansb,ansc;
int movex[4]={0,-1,0,1},movey[4]={-1,0,1,0};
bool DFS_Left(int x,int y,int t,int pos)
{    
    if(map[x][y]=='#')
	return false;
    if(x==ex&&y==ey)
    {
	ansa=t;
	return true;
    }
    int t1=(pos+3)%4;
    for(int i=0;i<4;i++)
    {
	int itx=x+movex[t1];
	int ity=y+movey[t1];
	if(DFS_Left(itx,ity,t+1,t1))
	{
	    flag=1;
	    break;
	}
	pos=t1;
	t1=(pos+1)%4;
    }
    return flag;
}
bool DFS_Right(int x,int y,int t,int pos)
{
    if(map[x][y]=='#')
	return false;
    if(x==ex&&y==ey)
    {
	ansb=t;
	return true;
    }
    int t1=(pos+1)%4;
    for(int i=0;i<4;i++)
    {
	int itx=x+movex[t1];
	int ity=y+movey[t1];
	if(DFS_Right(itx,ity,t+1,t1))
	{
	    flag=1;
	    break;
	}
	pos=t1;
	t1=(pos+3)%4;
    }
    return flag;
}
void BFS(int sx,int sy)
{
    memset(use,0,sizeof(use));
    queue<int> x,y;
    x.push(sx);
    y.push(sy);
    use[sx][sy]=1;
    int flag=0,cou=0,lastcou=1,nxtcou=0,ans=0;
    while(!x.empty())
    {
	int itx=x.front();
	x.pop();
	int ity=y.front();
	y.pop();
	cou++;
	for(int i=0;i<4;i++)
	{
	    int xx=itx+movex[i];
	    int yy=ity+movey[i];
	    if(map[xx][yy]=='#'||use[xx][yy])
		continue;
	    if(xx==ex&&yy==ey)
	    {
		flag=1;
		while(!x.empty())
		    x.pop(),y.pop();
		ansc=ans;
		break;
	    }
	    use[xx][yy]=1;
	    x.push(xx);
	    y.push(yy);
	    nxtcou++;
	}
	if(flag)
	    break;
	if(cou==lastcou)
	{
	    lastcou=nxtcou;
	    cou=nxtcou=0;
	    ans++;
	}
    }
}
int main()
{
    int cas;
    scanf("%d",&cas);
    while(cas--)
    {
	scanf("%d%d",&w,&h);
	for(int i=0;i<=w+1;i++)
	    map[0][i]=map[h+1][i]='#';
	for(int i=0;i<=h+1;i++)
	    map[i][0]=map[i][w+1]='#';
	for(int i=1;i<=h;i++)
	{
	    getchar();
	    for(int j=1;j<=w;j++)
	    {
		scanf("%c",&map[i][j]);
		if(map[i][j]=='S')
		    sx=i,sy=j;
		else if(map[i][j]=='E')
		    ex=i,ey=j;
	    }
	}
	memset(use,0,sizeof(use));
	use[sx][sy]=1;
	for(int i=0;i<4;i++)
	    if(DFS_Left(sx,sy,1,i))
		break;
	for(int i=0;i<4;i++)
	    if(DFS_Right(sx,sy,1,i))
		break;
	BFS(sx,sy);
	printf("%d %d %d\n",ansa,ansb,ansc+2);
    }
    return 0;
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值