摘要:
#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... 阅读全文
摘要:
思路: dfs不断递归 1:如果走过重复的路,则无法出去 2:如果出去则成功 阅读全文