nyoj 58 最少步數

2021-08-04 02:40:22 字數 1630 閱讀 8788

時間限制: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 < n <= 100),表示有n組測試資料;

隨後n行,每行有四個整數a,b,c,d(0<=a,b,c,d<=8)分別表示起點的行、列,終點的行、列。

輸出 輸出最少走幾步。

樣例輸入

2 3 1 5 7

3 1 6 7

樣例輸出

12 11

wa了次 有點傷心 忘記走過要標記為1了 導致 記憶體超限

上**:

bfs

#include 

#include

#include

#include

#include

using

namespace

std;

int cx[4][2] = ; //上下左右4個方向

int x,y,x2,y2;

struct node

now; //now代表當前位置

void bfs(int a[9][9])

for (int i=0; i<4; i++) //上下左右4個方向

next.step = now.step+1; //否則步數加1

a[next.x][next.y]=1; //走過的位置標記為 不能走 的狀態

q.push(next);}}

}}int main()

; scanf("%d%d%d%d",&x, &y, &x2, &y2);

now.x= x;

now.y = y;

now.step = 0;

bfs(a);

}return

0;}

dfs

#include 

#include

#include

#include

#include

using

namespace

std;

int a[9][9]= ;

int cx[4][2] = ; //上下左右4個方向

int min;

int x,y,x2,y2;

void dfs(int i,int j,int sum)

for (k=0; k<4; k++)

}}int main()

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,...

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,...

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,...