# [51. N-Queens](https://leetcode.com/problems/n-queens/) ## 题目 The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other. ![](https://assets.leetcode.com/uploads/2018/10/12/8-queens.png) Given an integer *n*, return all distinct solutions to the *n*-queens puzzle. Each solution contains a distinct board configuration of the *n*-queens' placement, where `'Q'` and `'.'` both indicate a queen and an empty space respectively. **Example**: Input: 4 Output: [ [".Q..", // Solution 1 "...Q", "Q...", "..Q."], ["..Q.", // Solution 2 "Q...", "...Q", ".Q.."] ] Explanation: There exist two distinct solutions to the 4-queens puzzle as shown above. ## 题目大意 给定一个整数 n,返回所有不同的 n 皇后问题的解决方案。每一种解法包含一个明确的 n 皇后问题的棋子放置方案,该方案中 'Q' 和 '.' 分别代表了皇后和空位。 ## 解题思路 - 求解 n 皇后问题 - 利用 col 数组记录列信息,col 有 `n` 列。用 dia1,dia2 记录从左下到右上的对角线,从左上到右下的对角线的信息,dia1 和 dia2 分别都有 `2*n-1` 个。 - dia1 对角线的规律是 `i + j 是定值`,例如[0,0],为 0;[1,0]、[0,1] 为 1;[2,0]、[1,1]、[0,2] 为 2; - dia2 对角线的规律是 `i - j 是定值`,例如[0,7],为 -7;[0,6]、[1,7] 为 -6;[0,5]、[1,6]、[2,7] 为 -5;为了使他们从 0 开始,i - j + n - 1 偏移到 0 开始,所以 dia2 的规律是 `i - j + n - 1 为定值`。 ## 代码 ```go package leetcode // 解法一 DFS func solveNQueens(n int) [][]string { col, dia1, dia2, row, res := make([]bool, n), make([]bool, 2*n-1), make([]bool, 2*n-1), []int{}, [][]string{} putQueen(n, 0, &col, &dia1, &dia2, &row, &res) return res } // 尝试在一个n皇后问题中, 摆放第index行的皇后位置 func putQueen(n, index int, col, dia1, dia2 *[]bool, row *[]int, res *[][]string) { if index == n { *res = append(*res, generateBoard(n, row)) return } for i := 0; i < n; i++ { // 尝试将第index行的皇后摆放在第i列 if !(*col)[i] && !(*dia1)[index+i] && !(*dia2)[index-i+n-1] { *row = append(*row, i) (*col)[i] = true (*dia1)[index+i] = true (*dia2)[index-i+n-1] = true putQueen(n, index+1, col, dia1, dia2, row, res) (*col)[i] = false (*dia1)[index+i] = false (*dia2)[index-i+n-1] = false *row = (*row)[:len(*row)-1] } } return } func generateBoard(n int, row *[]int) []string { board := []string{} res := "" for i := 0; i < n; i++ { res += "." } for i := 0; i < n; i++ { board = append(board, res) } for i := 0; i < n; i++ { tmp := []byte(board[i]) tmp[(*row)[i]] = 'Q' board[i] = string(tmp) } return board } // 解法二 二进制操作法 // class Solution // { // int n; // string getNq(int p) // { // string s(n, '.'); // s[p] = 'Q'; // return s; // } // void nQueens(int p, int l, int m, int r, vector> &res) // { // static vector ans; // if (p >= n) // { // res.push_back(ans); // return ; // } // int mask = l | m | r; // for (int i = 0, b = 1; i < n; ++ i, b <<= 1) // if (!(mask & b)) // { // ans.push_back(getNq(i)); // nQueens(p + 1, (l | b) >> 1, m | b, (r | b) << 1, res); // ans.pop_back(); // } // } // public: // vector > solveNQueens(int n) // { // this->n = n; // vector> res; // nQueens(0, 0, 0, 0, res); // return res; // } // }; ```