摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=2821思路:一开始的时候没注意到,必须从map[i][j]==0的位置开始,然后就是dfs了,回溯的时候稍微注意一下就可以了。 1 #include 2 #include 3 #include 4 #include 5 #include 6 using namespace std; 7 8 int n,m,cnt; 9 char str[33];10 int map[33][33];11 int dir[4][2]={{-1,0},{1,0},{0,-1},{0,1}};12 char Dir[7. 阅读全文
posted @ 2013-09-04 12:51 ihge2k 阅读(224) 评论(0) 推荐(1) 编辑