nyoj-58最小步數
時間限制:3000 ms | 記憶體限制:65535 kb
難度:4
描述
這有乙個迷宮,有0~8行和0~8列:
1,1,1,1,1,1,1,1,1
1,0,0,1,0,0,1,0,1
1,0,0,1,1,0,0,0,1
1,0,1,0,1,1,0,1,1
1,0,0,0,0,1,0,0,1
1,1,0,1,0,1,0,0,1
1,1,0,1,0,1,0,0,1
1,1,0,1,0,0,0,0,1
1,1,1,1,1,1,1,1,1
0表示道路,1表示牆。
現在輸入乙個道路的座標作為起點,再如輸入乙個道路的座標作為終點,問最少走幾步才能從起點到達終點?
(注:一步是指從一座標點走到其上下左右相鄰座標點,如:從(3,1)到(4,1)。)
輸入
第一行輸入乙個整數n(0輸出
輸出最少走幾步。
樣例輸入
2
3 1 5 7
3 1 6 7
樣例輸出
12
11
#include
#include
#include
#include
#include
using
namespace
std;
const
int maze[9][9]=;
typedef
struct node
point;
int vis[9][9];
const
int dir[4][2]=;
int sx,sy,ex,ey;
void init()
int bfs()
; qu.push(temp);
vis[sx][sy]=1;
while(!qu.empty())
}qu.pop();
}}int main()
nyoj 58 最小步數(bfs)
初入手搜尋,慢慢來,學演算法不能著急 本題從某一點開始廣搜.就是把上下左右可能的點都遍歷,看看有沒有合適的點,如果有,就放入佇列,然後4個方向判斷完成後,再從隊首取出乙個元素,接著進行,注意 當隊列為空時,說明搜尋結束仍然沒有找到目標點。這裡的廣搜和樹的層序遍歷極為相似,大家可以先看下樹的層序建立,...
nyoj 最小步數
時間限制 3000 ms 記憶體限制 65535 kb 難度 4 描述 這有乙個迷宮,有0 8行和0 8列 1,1,1,1,1,1,1,1,1 1,0,0,1,0,0,1,0,1 1,0,0,1,1,0,0,0,1 1,0,1,0,1,1,0,1,1 1,0,0,0,0,1,0,0,1 1,1,0,...
BFS 最小步數 續
上一次用的dfs,這次bfs,直接在地圖上擴充套件結點,如下圖所示 橙黃色代表起點,淺藍色終點。include include using namespace std define access 0 struct position start,end const int direction 4 2 ...