一道例題解決記憶化搜索(若干疑問)

附上代碼: #include<bits/stdc++.h> using namespace std; int n,m; int f[1001][1001]; int f1[1001][1001]; int vis[1001][1001]; int dfs(int x,int y) {     if(f1[x][y]!=0)         return f1[x][y];     int b=0;
相關文章
相關標籤/搜索