迷宮問題——深度優先搜索

題目:https://www.luogu.org/problemnew/show/P1605 題解: 這是經典的深度優先搜索的題目,配合標記、打表技巧的使用。 #include<bits/stdc++.h> using namespace std; int mapp[6][6];//map與萬能庫中的某些東西重名了,改成mapp bool temp[6][6]; int dx[4]={0,0,1
相關文章
相關標籤/搜索