Qiuqiqiu  
不管道路多么崎岖坎坷,我永远不停下追逐梦想的脚步!

2012年1月18日

摘要: http://acm.hdu.edu.cn/showproblem.php?pid=1254BFS+DFS我的代码 1 #include <cstdio> 2 #include <cstring> 3 #include <queue> 4 using namespace std; 5 const int N=10; 6 const int dx[4]={0,1,0,-1}; 7 const int dy[4]={1,0,-1,0}; 8 int maze[N][N],maze2[N][N],vis2[N][N],vis[N][N][N][N]; 9 int 阅读全文
posted @ 2012-01-18 16:24 Qiuqiqiu 阅读(260) 评论(0) 推荐(0) 编辑