摘要: View Code 1 #include<cstdio> 2 #include<cstring> 3 #include<cstdlib> 4 #include<queue> 5 #include<algorithm> 6 #define N 36 7 using namespace std; 8 char map[N][N][N]; 9 int vis[N][N][N];10 int dx[6]={0,-1,0,1,0,0};11 int dy[6]={-1,0,1,0,0,0};12 int dz[6]={0,0,0,0,1,-1} 阅读全文
posted @ 2012-07-29 14:11 xxx0624 阅读(401) 评论(0) 推荐(0) 编辑