摘要: #include #include using namespace std; int m,n,total; int ans=100; int g[10][10];//记录格子 int vis[10][10];//标记走过的地方 void f(int i,int j,int sum,int cnt){ if(sum>total/2) return ;//超过一半返回 i... 阅读全文
posted @ 2019-03-20 21:14 YFR718 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 思路: dfs不断递归 1:如果走过重复的路,则无法出去 2:如果出去则成功 阅读全文
posted @ 2019-03-20 18:10 YFR718 阅读(161) 评论(0) 推荐(0) 编辑