2012年3月23日
摘要: 就是在二维bfs的基础上,再添加两个方向。无他呵呵,学了STL,用<queue>超方便啊!好爽,要继续发扬光大AC:#include<iostream>#include<queue>#include<cstring>#include<cstdio>using namespace std;char map[50][50][50];int flag[50][50][50]; //0没有走过,1代表走过 int fanx[6]={1,-1,0,0,0,0};int fany[6]={0,0,1,-1,0,0};int fanz[6]={0, 阅读全文
posted @ 2012-03-23 20:43 hrbust_09zhangyabin 阅读(374) 评论(0) 推荐(0) 编辑