Problem Description
The n-queens puzzle is the problem of placing n queens on an n x n chessboard such that no two queens attack each other. Given an integer n, return the number of distinct solutions to the n-queens puzzle.
Key Insights
- The queens must be placed such that they do not share the same row, column, or diagonal.
- A backtracking approach is effective for exploring possible configurations of queen placements.
- The solution involves recursively placing queens and backtracking when an invalid state is encountered.
- The problem has symmetry, which can reduce the search space by only considering unique arrangements.
Space and Time Complexity
Time Complexity: O(n!), as we potentially place a queen in each row and check for valid placements. Space Complexity: O(n), due to the recursion stack and storage for column and diagonal tracking.
Solution
The solution employs a backtracking algorithm to explore all possible configurations of queens on the chessboard. We maintain arrays to track the columns and diagonals that are already occupied by queens to ensure no two queens threaten each other. The algorithm recursively attempts to place queens in each row and counts valid arrangements.