dfs解決數塔問題;

#include <iostream>#include <stdio.h> #include <vector>  using namespace std; const int maxn=200; int tower[maxn][maxn]; vector<int> temp,ans; int n; int maxsum=-1; void dfs(int x,int y,int count){ if
相關文章
相關標籤/搜索