摘要: 题目链接: 关于八皇后问题的参考链接: AC代码: c++ include using namespace std; const int maxn = 110; int vis[3][maxn]; int sum; int dp[11]; void DFS(int row, int n) { if 阅读全文
posted @ 2019-05-06 20:19 Youpeng 阅读(86) 评论(0) 推荐(0) 编辑