有乙個n*m的棋盤(1輸入格式:
一行四個資料,棋盤的大小和馬的座標
輸出格式:
乙個n*m的矩陣,代表馬到達某個點最少要走幾步(左對齊,寬5格,不能到達則輸出-1)
輸入樣例#1:
複製
3 3 1 1
輸出樣例#1:
複製
0 3 23 -1 1
2 1 4
#include#include#include#includeusing namespace std;
typedef pairp;
const int max=405;
const int unable=-1;
int n,m;//n行,m列
int sx,sy;//起點
int d[max][max];
int dx[8]=;
int dy[8]=;
int bfs(){
queueque;//宣告儲存p型別資料的棧
for(int i=0;i
洛谷 P1443 馬的遍歷
題目概述 有乙個n m的棋盤 1 解題思路 使用廣搜,注意地圖邊界和馬跳的方向即可。可以採用for代替8個if來減少要碼的字。注意棧的讀寫。時間複雜度 o n m 空間複雜度 o n m 源程式 const d array 1.2,1.8 of longint 2,2,1,1,1,1,2,2 1,1...
洛谷P1443 馬的遍歷
有乙個n m的棋盤 1輸入格式 一行四個資料,棋盤的大小和馬的座標 輸出格式 乙個n m的矩陣,代表馬到達某個點最少要走幾步 左對齊,寬5格,不能到達則輸出 1 輸入樣例 1 複製 3 3 1 1輸出樣例 1 複製 0 3 2 3 1 1 2 1 4bfs模板題 includeusing names...
洛谷 P1443 馬的遍歷
有乙個n m的棋盤 1一行四個資料,棋盤的大小和馬的座標 乙個n m的矩陣,代表馬到達某個點最少要走幾步 左對齊,寬5格,不能到達則輸出 1 輸入 3 3 1 1 輸出 0 3 2 3 1 1 2 1 4 include include include include using namespace...