/**
[BFS]hdu 1253 胜利大逃亡
bfs一水,一直WA,因为已经处于起点,然后mat[0][0][0] == 1也是可行的
*/
#include <stdio.h>
#include <string.h>
#include <queue>
using namespace std;
const int N = 55;
int mat[N][N][N],a,b,c,T;
struct node
{
int x,y,z,step;
node(int d = 0,int e = 0,int f = 0){x = d; y = e; z = f;}
};
int move[6][3] = {0,0,1, 0,1,0, 0,0,-1, 0,-1,0, 1,0,0, -1,0,0};
bool ok(node ps)
{
return ps.x >= 0 && ps.x < a && ps.y >=0 && ps.y < b && ps.z >=0 && ps.z < c && mat[ps.x][ps.y][ps.z] == 0;
}
int bfs()
{
if(mat[a-1][b-1][c-1] == 1)
return -1;
if(a + b + c - 3 > T)
ret
[BFS] hdu 1253 胜利大逃亡
最新推荐文章于 2020-11-17 21:13:01 发布
这篇博客主要介绍了如何使用BFS(广度优先搜索)解决HDU 1253 '胜利大逃亡'的算法问题,通过实例代码解析了BFS在迷宫问题中的应用,包括边界条件判断和路径搜索策略。
摘要由CSDN通过智能技术生成