首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
poj2251专题
POJ2251 Dungeon Master 【BFS】
题目链接:http://poj.org/problem?id=2251 题意:给你一个三维迷宫,S是起点,E是终点,#不可走 解析:直接开个三维数组,BFS就好 #include <algorithm>#include <cstring>#include <cstdio>#include <queue>using namespace std;const int inf = 0x7f
阅读更多...