hdu1728 逃离迷宫--BFS

原题链接: http://acm.hdu.edu.cn/showproblem.php?pid=1728


一:分析

这里的区别是转弯数,只需注意这一点就行了。


二:AC代码

#define _CRT_SECURE_NO_DEPRECATE 

#include
#include
#include
#include
using namespace std;

struct Node
{
	int x, y;
	int k;//转弯次数
};

char ch[110][110];
int dir[4][2] = { 0,1,0,-1,-1,0,1,0 };
int vis[110][110];
int sx, sy;
int dx, dy;
int n, m;
int kMax;
int flag;

void bfs()
{
	queue Q;
	Node node1, node2;

	node1.x = sx;
	node1.y = sy;
	node1.k = -1;
	vis[sx][sy] = 1;

	Q.push(node1);

	while (!Q.empty())
	{
		node1 = Q.front();
		Q.pop();
		if (node1.x == dx&&node1.y == dy&&node1.k <= kMax)
		{
			flag = 1;
			break;
		}

		for (int i = 0; i < 4; i++)
		{
			node2 = node1;
			node2.k++;
			node2.x += dir[i][0];
			node2.y += dir[i][1];
			while (node2.x >= 0 && node2.y >= 0 && node2.x < n&&node2.y < m&&ch[node2.x][node2.y] != '*')
			{
				if (!vis[node2.x][node2.y])
				{
					vis[node2.x][node2.y] = 1;
					Q.push(node2);
				}

				node2.x += dir[i][0];
				node2.y += dir[i][1];
			}
		}
	}


	printf("%s\n", flag ? "yes" : "no");
}

int main()
{
	int t;
	scanf("%d", &t);

	while (t--)
	{
		flag = 0;
		memset(vis, 0, sizeof(vis));

		scanf("%d%d", &n, &m);

		for (int i = 0; i < n; i++)
			scanf("%s", ch[i]);

		scanf("%d%d%d%d%d", &kMax, &sy, &sx, &dy, &dx);
		sx--;
		sy--;
		dx--;
		dy--;

		bfs();
	}

	return 0;
}




你可能感兴趣的:(【搜索】--DFS/BFS)