简单的三维 广搜
题目意思:
给定一个三维空间,有些点能走有些点不能走,每次只能上下,左右,前后六个方向走,
给定起始坐标和终点坐标,求从起点到终点最短的路径。
本题要点:
1、图是按z,y,x给出的,所以在获取起点和终点时也是按z,y,x获取
2、三维的 BFS, 有6个方向可以走(前后左右上下), 每次走一步,判断是否越界。
3、vis[MaxN][MaxN][MaxN] 表示某点是否被访问过
4、 结构体 node 的step,存放的是走的步数。
5、 最后,用队列模拟 bfs即可。
#include <cstdio>
#include <cstring>
#include <iostream>
#include <queue>
using namespace std;
const int MaxN = 11;
int dx[] = {
1, -1, 0, 0, 0, 0};
int dy[] = {
0, 0, 1, -1, 0, 0};
int dz[] = {
0, 0, 0, 0, 1, -1};
char s1[5], s2[5];
int n, ans;