本文最后更新于 2025-03-30T12:48:33+08:00
题目
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| n 皇后问题 研究的是如何将 n 个皇后放置在 n×n 的棋盘上,并且使皇后彼此之间不能相互攻击。
给你一个整数 n ,返回 n 皇后问题 不同的解决方案的数量。
示例 1:
输入:n = 4 输出:2 解释:如上图所示,4 皇后问题存在两个不同的解法。
示例 2:
输入:n = 1 输出:1 提示:
1 <= n <= 9 皇后彼此不能相互攻击,也就是说:任何两个皇后都不能处于同一条横行、纵行或斜线上。
|
题目思路
- 1、数据规模 1 - 9 直接打表方法,所以可以面向答案编程!
- 2、使用回溯法 + DFS,只要横竖斜三个方向不在一起即可,如果均在一起,则返回 false。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
| class Solution { private: vector<int> res; int ans = 0; public: void dfs(vector<int>& res, int col, int row) { if(col == row) ans++; for(int i = 0; i < row; i++) { if (judge(res, i)) { res.push_back(i); dfs(res, col + 1, row); res.pop_back(); } } }
bool judge(vector<int> res, int n) { for(int i = 0; i < res.size(); i++) { if ((abs(res[i] - n) == res.size() - i) || n == res[i]) return false; } return true; }
int totalNQueens(int n) {
dfs(res, 0, n); return ans; } };
|
复杂度
Day 49 52. N皇后 II
https://chaggle.github.io/2021/10/28/Leetcode/91-day/day-49/