ignatius被魔王抓走了,有一天魔王出差去了,這可是ignatius逃亡的好機會.
魔王住在乙個城堡裡,城堡是乙個abc的立方體,可以被表示成a個b*c的矩陣,剛開始ignatius被關在(0,0,0)的位置,離開城堡的門在(a-1,b-1,c-1)的位置,現在知道魔王將在t分鐘後回到城堡,ignatius每分鐘能從乙個座標走到相鄰的六個座標中的其中乙個.現在給你城堡的地圖,請你計算出ignatius能否在魔王回來前離開城堡(只要走到出口就算離開城堡,如果走到出口的時候魔王剛好回來也算逃亡成功),如果可以請輸出需要多少分鐘才能離開,如果不能則輸出-1.
input
輸入資料的第一行是乙個正整數k,表明測試資料的數量.每組測試資料的第一行是四個正整數a,b,c和t(1<=a,b,c<=50,1<=t<=1000),它們分別代表城堡的大小和魔王回來的時間.然後是a塊輸入資料(先是第0塊,然後是第1塊,第2塊…),每塊輸入資料有b行,每行有c個正整數,代表迷宮的布局,其中0代表路,1代表牆.(如果對輸入描述不清楚,可以參考sample input中的迷宮描述,它表示的就是上圖中的迷宮)
特別注意:本題的測試資料非常大,請使用scanf輸入,我不能保證使用cin能不超時.在本oj上請使用visual c++提交.
output
對於每組測試資料,如果ignatius能夠在魔王回來前離開城堡,那麼請輸出他最少需要多少分鐘,否則輸出-1.
sample input
13 3 4 20
0 1 1 1
0 0 1 1
0 1 1 1
1 1 1 1
1 0 0 1
0 1 1 1
0 0 0 0
0 1 1 0
0 1 1 0
sample output
11
#
include
#include
#include
using
namespace std;
int n,m,k,t;
int e[51]
[51][
51];int vis[51]
[51][
51];int next_[
3]=,
,,,,
};struct
note
q[1010];
intbfs()
if(xt==n-
1&&yt==m-
1&&zt==k-
1&&q[tail-1]
.s<=t)
} head++;}
return-1
;}intmain()
}return0;
}
#
include
#include
int dir[6]
[3]=
,,,,
,};int book[55]
[55][
55];int vis[55]
[55][
55];int f,sum,a,b,c,time;
void
dfs(
int x,
int y,
int z,
int count)
for(
int i=
0;i<
6;i++)}
}int
main()
return0;
}
hdu 1253 勝利大逃亡
先前在次處漏掉了,could come的判斷,結果一直wa。if step t could come include include struct q 150000 int head,tail,step,add step flag int input 52 52 52 int end x,end y...
HDU 1253 勝利大逃亡
這個題比較坑的bfs吧,注意如果判邊界的話可能會超時,最好先人為加邊界,然後進行搜尋,搜尋最好是隊尾判斷,因為可能出現起點和終點相同的資料 wa了很久 include include includeusing namespace std const int maxn 52 struct node q...
HDU 1253 勝利大逃亡
ignatius被魔王抓走了,有一天魔王出差去了,這可是ignatius逃亡的好機會.魔王住在乙個城堡裡,城堡是乙個a b c的立方體,可以被表示成a個b c的矩陣,剛開始ignatius被關在 0,0,0 的位置,離開城堡的門在 a 1,b 1,c 1 的位置,現在知道魔王將在t分鐘後回到城堡,i...