Tempter of the Bone(DFS)

HDU1010 Tempter of the Bone

没有剪枝,超时

#include <iostream>
#include<cstdio>
#include<string.h>
using namespace std;
char map[10][10];
int flag,step;
int d[4][2]={0,1,1,0,0,-1,-1,0};
int ex,ey,sx,sy;
int n,m;
void dfs(int x,int y,int t)
{
	if(flag==1)return ;
	else if(t==0)
	{
		if(x==ex&&y==ey)
		{
		flag=1;return;	
		}
		
		else return ;
	}
	else
	for(int i=0;i<4;i++)		//向四个方向深搜 
	{
		int nx=x+d[i][0],ny=y+d[i][1];
		if(nx>0&&nx<=n&&ny>0&&ny<=m&&(map[nx][ny]=='.'||map[nx][ny]=='D'))
		{
			map[nx][ny]='X';	//标记走过 
			dfs(nx,ny,t-1);
			map[nx][ny]='.';	//回溯 
		}
	}
}
int main(){
	char str[10];
	int  t;
	while(scanf("%d%d%d",&n,&m,&t)!=EOF)
	{
	if(n==0&&m==0)return 0;
	for(int i=1;i<=n;i++)
	{
		scanf("%s",str);
		for(int j=1;j<=m;j++)
		{
			map[i][j] = str[j-1];
			if(map[i][j]=='S')
			sx=i,sy=j;
			else if(map[i][j]=='D')
			ex = i,ey = j;
		}
	}	
	flag=0;
	dfs(sx,sy,t);
	if(flag==0)printf("NO\n");
	else printf("YES\n");	
	}
	return 0;
}

猜你喜欢

转载自blog.csdn.net/weixin_41988545/article/details/81354354