The N Queen is the problem of placing N chess queens on an N×N chessboard so that no two queens attack each other. For example, the following is a solution for 4 Queen problem.
In previous post, we have discussed an approach that prints only one possible solution, so now in this post, the task is to print all solutions in N-Queen Problem. Each solution contains distinct board configurations of the N-queens’ placement, where the solutions are a permutation of [1,2,3..n] in increasing order, here the number in the ith place denotes that the ith-column queen is placed in the row with that number. For the example above solution is written as [[2 4 1 3 ] [3 1 4 2 ]]. The solution discussed here is an extension of the same approach.
Backtracking Algorithm
The idea is to place queens one by one in different columns, starting from the leftmost column. When we place a queen in a column, we check for clashes with already placed queens. In the current column, if we find a row for which there is no clash, we mark this row and column as part of the solution. If we do not find such a row due to clashes then we backtrack and return false.
1) Start in the leftmost column
2) If all queens are placed
return true
3) Try all rows in the current column. Do following
for every tried row.
a) If the queen can be placed safely in this row
then mark this [row, column] as part of the
solution and recursively check if placing
queen here leads to a solution.
b) If placing queen in [row, column] leads to a
solution then return true.
c) If placing queen doesn't lead to a solution
then unmark this [row, column] (Backtrack)
and go to step (a) to try other rows.
4) If all rows have been tried and nothing worked,
return false to trigger backtracking.
A modification is that we can find whether we have a previously placed queen in a column or in left diagonal or in right diagonal in O(1) time. We can observe that
- For all cells in a particular left diagonal , their row + col = constant.
- For all cells in a particular right diagonal, their row – col + n – 1 = constant.
Let say n = 5, then we have a total of 2n-1 left and right diagonals
Let say we placed a queen at (2,0)
(2,0) have leftDiagonal value = 2. Now we can not place another queen at (1,1) and (0,2) because both of these have same leftDiagonal value as for (2,0). Similar thing can be noticed for right diagonal as well.
Implementation:
C++
/* C/C++ program to solve N Queen Problem using backtracking */ #include <bits/stdc++.h> using namespace std; vector<vector< int > > result; /* A utility function to check if a queen can be placed on board[row][col]. Note that this function is called when "col" queens are already placed in columns from 0 to col -1. So we need to check only left side for attacking queens */ bool isSafe(vector<vector< int > > board, int row, int col) { int i, j; int N = board.size(); /* Check this row on left side */ for (i = 0; i < col; i++) if (board[row][i]) return false ; /* Check upper diagonal on left side */ for (i = row, j = col; i >= 0 && j >= 0; i--, j--) if (board[i][j]) return false ; /* Check lower diagonal on left side */ for (i = row, j = col; j >= 0 && i < N; i++, j--) if (board[i][j]) return false ; return true ; } /* A recursive utility function to solve N Queen problem */ bool solveNQUtil(vector<vector< int > >& board, int col) { /* base case: If all queens are placed then return true */ int N = board.size(); if (col == N) { vector< int > v; for ( int i = 0; i < N; i++) { for ( int j = 0; j < N; j++) { if (board[i][j] == 1) v.push_back(j + 1); } } result.push_back(v); return true ; } /* Consider this column and try placing this queen in all rows one by one */ bool res = false ; for ( int i = 0; i < N; i++) { /* Check if queen can be placed on board[i][col] */ if (isSafe(board, i, col)) { /* Place this queen in board[i][col] */ board[i][col] = 1; // Make result true if any placement // is possible res = solveNQUtil(board, col + 1) || res; /* If placing queen in board[i][col] doesn't lead to a solution, then remove queen from board[i][col] */ board[i][col] = 0; // BACKTRACK } } /* If queen can not be place in any row in this column col then return false */ return res; } /* This function solves the N Queen problem using Backtracking. It mainly uses solveNQUtil() to solve the problem. It returns false if queens cannot be placed, otherwise return true and prints placement of queens in the form of 1s. Please note that there may be more than one solutions, this function prints one of the feasible solutions.*/ vector<vector< int > > nQueen( int n) { result.clear(); vector<vector< int > > board(n, vector< int >(n, 0)); if (solveNQUtil(board, 0) == false ) { return {}; } sort(result.begin(), result.end()); return result; } // Driver Code int main() { int n = 4; vector<vector< int > > v = nQueen(n); for ( auto ar : v) { cout << "[" ; for ( auto it : ar) cout << it << " " ; cout << "]" ; } return 0; } |
Java
/* Java program to solve N Queen Problem using backtracking */ import java.util.*; class GfG { /* This function solves the N Queen problem using Backtracking. It mainly uses solveNQUtil() to solve the problem. */ static List<List<Integer>> nQueen( int n) { // cols[i] = true if there is a queen previously placed at ith column cols = new boolean [n]; // leftDiagonal[i] = true if there is a queen previously placed at // i = (row + col )th left diagonal leftDiagonal = new boolean [ 2 *n]; // rightDiagonal[i] = true if there is a queen previously placed at // i = (row - col + n - 1)th rightDiagonal diagonal rightDiagonal = new boolean [ 2 *n]; result = new ArrayList<>(); List<Integer> temp = new ArrayList<>(); for ( int i= 0 ;i<n;i++)temp.add( 0 ); solveNQUtil(result,n, 0 ,temp); return result; } private static void solveNQUtil(List<List<Integer>> result, int n, int row,List<Integer> comb){ if (row==n){ // if row==n it means we have successfully placed all n queens. // hence add current arrangement to our answer // comb represent current combination result.add( new ArrayList<>(comb)); return ; } for ( int col = 0 ;col<n;col++){ // if we have a queen previously placed in the current column // or in current left or right diagonal we continue if (cols[col] || leftDiagonal[row+col] || rightDiagonal[row-col+n]) continue ; // otherwise we place a queen at cell[row][col] and //make current column, left diagonal and right diagonal true cols[col] = leftDiagonal[row+col] = rightDiagonal[row-col+n] = true ; comb.set(col,row+ 1 ); // then we goto next row solveNQUtil(result,n,row+ 1 ,comb); // then we backtrack and remove our currently placed queen cols[col] = leftDiagonal[row+col] = rightDiagonal[row-col+n] = false ; } } static List<List<Integer> > result = new ArrayList<List<Integer> >(); static boolean [] cols,leftDiagonal,rightDiagonal; // Driver code public static void main(String[] args) { int n = 4 ; List<List<Integer> > res = nQueen(n); System.out.println(res); } } |
Python3
''' Python3 program to solve N Queen Problem using backtracking ''' result = [] # A utility function to print solution ''' A utility function to check if a queen can be placed on board[row][col]. Note that this function is called when "col" queens are already placed in columns from 0 to col -1. So we need to check only left side for attacking queens ''' def isSafe(board, row, col): # Check this row on left side for i in range (col): if (board[row][i]): return False # Check upper diagonal on left side i = row j = col while i > = 0 and j > = 0 : if (board[i][j]): return False i - = 1 j - = 1 # Check lower diagonal on left side i = row j = col while j > = 0 and i < 4 : if (board[i][j]): return False i = i + 1 j = j - 1 return True ''' A recursive utility function to solve N Queen problem ''' def solveNQUtil(board, col): ''' base case: If all queens are placed then return true ''' if (col = = 4 ): v = [] for i in board: for j in range ( len (i)): if i[j] = = 1 : v.append(j + 1 ) result.append(v) return True ''' Consider this column and try placing this queen in all rows one by one ''' res = False for i in range ( 4 ): ''' Check if queen can be placed on board[i][col] ''' if (isSafe(board, i, col)): # Place this queen in board[i][col] board[i][col] = 1 # Make result true if any placement # is possible res = solveNQUtil(board, col + 1 ) or res ''' If placing queen in board[i][col] doesn't lead to a solution, then remove queen from board[i][col] ''' board[i][col] = 0 # BACKTRACK ''' If queen can not be place in any row in this column col then return false ''' return res ''' This function solves the N Queen problem using Backtracking. It mainly uses solveNQUtil() to solve the problem. It returns false if queens cannot be placed, otherwise return true and prints placement of queens in the form of 1s. Please note that there may be more than one solutions, this function prints one of the feasible solutions.''' def solveNQ(n): result.clear() board = [[ 0 for j in range (n)] for i in range (n)] solveNQUtil(board, 0 ) result.sort() return result # Driver Code n = 4 res = solveNQ(n) print (res) # This code is contributed by YatinGupta |
C#
/* C# program to solve N Queen Problem using backtracking */ using System; using System.Collections; using System.Collections.Generic; class GfG { static List<List< int > > result = new List<List< int > >(); /* A utility function to check if a queen can be placed on board[row,col]. Note that this function is called when "col" queens are already placed in columns from 0 to col -1. So we need to check only left side for attacking queens */ static bool isSafe( int [, ] board, int row, int col, int N) { int i, j; /* Check this row on left side */ for (i = 0; i < col; i++) if (board[row, i] == 1) return false ; /* Check upper diagonal on left side */ for (i = row, j = col; i >= 0 && j >= 0; i--, j--) if (board[i, j] == 1) return false ; /* Check lower diagonal on left side */ for (i = row, j = col; j >= 0 && i < N; i++, j--) if (board[i, j] == 1) return false ; return true ; } /* A recursive utility function to solve N Queen problem */ static bool solveNQUtil( int [, ] board, int col, int N) { /* base case: If all queens are placed then return true */ if (col == N) { List< int > v = new List< int >(); for ( int i = 0; i < N; i++) for ( int j = 0; j < N; j++) { if (board[i, j] == 1) v.Add(j + 1); } result.Add(v); return true ; } /* Consider this column and try placing this queen in all rows one by one */ bool res = false ; for ( int i = 0; i < N; i++) { /* Check if queen can be placed on board[i,col] */ if (isSafe(board, i, col, N)) { /* Place this queen in board[i,col] */ board[i, col] = 1; // Make result true if any placement // is possible res = solveNQUtil(board, col + 1, N) || res; /* If placing queen in board[i,col] doesn't lead to a solution, then remove queen from board[i,col] */ board[i, col] = 0; // BACKTRACK } } /* If queen can not be place in any row in this column col then return false */ return res; } /* This function solves the N Queen problem using Backtracking. It mainly uses solveNQUtil() to solve the problem. It returns false if queens cannot be placed, otherwise return true and prints placement of queens in the form of 1s. Please note that there may be more than one solutions, this function prints one of the feasible solutions.*/ static List<List< int > > solveNQ( int n) { result.Clear(); int [, ] board = new int [n, n]; solveNQUtil(board, 0, n); return result; } // Driver code public static void Main() { int n = 4; List<List< int > > res = solveNQ(n); for ( int i = 0; i < res.Count; i++) { Console.Write( "[" ); for ( int j = 0; j < res[i].Count; j++) { Console.Write(res[i][j]+ " " ); } Console.Write( "]" ); } } } /* This code contributed by PrinciRaj1992 */ |
Javascript
/* JS program to solve N Queen Problem using backtracking */ let result = [] // A utility function to print solution /* A utility function to check if a queen can be placed on board[row][col]. Note that this function is called when "col" queens are already placed in columns from 0 to col -1. So we need to check only left side for attacking queens */ function isSafe(board, row, col) { // Check this row on left side for (let i = 0; i < col; i++) if (board[row][i]) return false // Check upper diagonal on left side let i = row let j = col while (i >= 0 && j >= 0) { if (board[i][j]) return false i -= 1 j -= 1 } // Check lower diagonal on left side i = row j = col while (j >= 0 && i < 4) { if (board[i][j]) return false i = i + 1 j = j - 1 } return true } /* A recursive utility function to solve N Queen problem */ function solveNQUtil(board, col) { /* base case If all queens are placed then return true */ if (col == 4) { let v = [] for (let i of board) { for ( var j = 0; j < i.length; j++) { if (i[j] == 1) v.push(j+1) } } result.push(v) return true } /* Consider this column and try placing this queen in all rows one by one */ let res = false for ( var i = 0; i < 4; i++) { /* Check if queen can be placed on board[i][col] */ if (isSafe(board, i, col)) { // Place this queen in board[i][col] board[i][col] = 1 // Make result true if any placement // is possible res = solveNQUtil(board, col + 1) || res /* If placing queen in board[i][col] doesn't lead to a solution, then remove queen from board[i][col] */ board[i][col] = 0 // BACKTRACK } } /* If queen can not be place in any row in this column col then return false */ return res } /* This function solves the N Queen problem using Backtracking. It mainly uses solveNQUtil() to solve the problem. It returns false if queens cannot be placed, otherwise return true and prints placement of queens in the form of 1s. Please note that there may be more than one solutions, this function prints one of the feasible solutions.*/ function solveNQ(n) { result = [] let board = new Array(n); for ( var i = 0; i < n; i++) board[i] = new Array(n).fill(0) solveNQUtil(board, 0) result.sort() return result } // Driver Code let n = 4 let res = solveNQ(n) console.log(res) // This code is contributed by phasing17 |
[2 4 1 3 ][3 1 4 2 ]
Time Complexity: O(N!), where N is the size of the chessboard.
Auxiliary Space: O(N^2)
Efficient Backtracking Approach Using Bit-Masking
Algorithm:
There is always only one queen in each row and each column, so idea of backtracking is to start placing queen from the leftmost column of each row and find a column where the queen could be placed without collision with previously placed queens. It is repeated from the first row till the last row. While placing a queen, it is tracked as if it is not making a collision (row-wise, column-wise and diagonally) with queens placed in previous rows. Once it is found that the queen can’t be placed at a particular column index in a row, the algorithm backtracks and change the position of the queen placed in the previous row then moves forward to place the queen in the next row.
- Start with three-bit vector which is used to track safe place for queen placement row-wise, column-wise and diagonally in each iteration.
- Three-bit vector will contain information as bellow:
- rowmask: set bit index (i) of this bit vector will indicate, the queen can’t be placed at ith column of next row.
- ldmask: set bit index (i) of this bit vector will indicate, the queen can’t e placed at ith column of next row. It represents the unsafe column index for next row falls under left diagonal of queens placed in previous rows.
- rdmask: set bit index (i) of this bit vector will indicate, the queen can’t be placed at ith column of next row. It represents the unsafe column index for next row falls right diagonal of queens placed in previous rows.
- There is a 2-D (NxN) matrix (board), which will have ‘ ‘ character at all indexes in beginning and it gets filled by ‘Q’ row-by-row. Once all rows are filled by ‘Q’, the current solution is pushed into the result list.
Below is the implementation of the above approach:
C++
// CPP program for above approach #include <bits/stdc++.h> using namespace std; vector<vector< int > > result; // Program to solve N Queens problem void solveBoard(vector<vector< char > >& board, int row, int rowmask, int ldmask, int rdmask, int & ways) { int n = board.size(); // All_rows_filled is a bit mask having all N bits set int all_rows_filled = (1 << n) - 1; // If rowmask will have all bits set, means queen has // been placed successfully in all rows and board is // displayed if (rowmask == all_rows_filled) { vector< int > v; for ( int i = 0; i < board.size(); i++) { for ( int j = 0; j < board.size(); j++) { if (board[i][j] == 'Q' ) v.push_back(j + 1); } } result.push_back(v); return ; } // We extract a bit mask(safe) by rowmask, // ldmask and rdmask. all set bits of 'safe' // indicates the safe column index for queen // placement of this iteration for row index(row). int safe = all_rows_filled & (~(rowmask | ldmask | rdmask)); while (safe) { // Extracts the right-most set bit // (safe column index) where queen // can be placed for this row int p = safe & (-safe); int col = ( int )log2(p); board[row][col] = 'Q' ; // This is very important: // we need to update rowmask, ldmask and rdmask // for next row as safe index for queen placement // will be decided by these three bit masks. // We have all three rowmask, ldmask and // rdmask as 0 in beginning. Suppose, we are placing // queen at 1st column index at 0th row. rowmask, // ldmask and rdmask will change for next row as // below: // rowmask's 1st bit will be set by OR operation // rowmask = 00000000000000000000000000000010 // ldmask will change by setting 1st // bit by OR operation and left shifting // by 1 as it has to block the next column // of next row because that will fall on left // diagonal. ldmask = // 00000000000000000000000000000100 // rdmask will change by setting 1st bit // by OR operation and right shifting by 1 // as it has to block the previous column // of next row because that will fall on right // diagonal. rdmask = // 00000000000000000000000000000001 // these bit masks will keep updated in each // iteration for next row solveBoard(board, row + 1, rowmask | p, (ldmask | p) << 1, (rdmask | p) >> 1, ways); // Reset right-most set bit to 0 so, // next iteration will continue by placing the queen // at another safe column index of this row safe = safe & (safe - 1); // Backtracking, replace 'Q' by ' ' board[row][col] = ' ' ; } return ; } // Driver Code int main() { // Board size int n = 4; int ways = 0; vector<vector< char > > board; for ( int i = 0; i < n; i++) { vector< char > tmp; for ( int j = 0; j < n; j++) { tmp.push_back( ' ' ); } board.push_back(tmp); } int rowmask = 0, ldmask = 0, rdmask = 0; int row = 0; // Function Call result.clear(); solveBoard(board, row, rowmask, ldmask, rdmask, ways); sort(result.begin(),result.end()); for ( auto ar : result) { cout << "[" ; for ( auto it : ar) cout << it << " " ; cout << "]" ; } return 0; } // This code is contributed by Nikhil Vinay |
Java
// Java Program for above approach import java.util.*; public class NQueenSolution { static List<List<Integer> > result = new ArrayList<List<Integer> >(); // Program to solve N-Queens Problem public void solveBoard( char [][] board, int row, int rowmask, int ldmask, int rdmask) { int n = board.length; // All_rows_filled is a bit mask // having all N bits set int all_rows_filled = ( 1 << n) - 1 ; // If rowmask will have all bits set, // means queen has been placed successfully // in all rows and board is displayed if (rowmask == all_rows_filled) { List<Integer> v = new ArrayList<>(); for ( int i = 0 ; i < n; i++) { for ( int j = 0 ; j < n; j++) { if (board[i][j] == 'Q' ) v.add(j + 1 ); } } result.add(v); return ; } // We extract a bit mask(safe) by rowmask, // ldmask and rdmask. all set bits of 'safe' // indicates the safe column index for queen // placement of this iteration for row index(row). int safe = all_rows_filled & (~(rowmask | ldmask | rdmask)); while (safe > 0 ) { // Extracts the right-most set bit // (safe column index) where queen // can be placed for this row int p = safe & (-safe); int col = ( int )(Math.log(p) / Math.log( 2 )); board[row][col] = 'Q' ; // This is very important: // we need to update rowmask, ldmask and rdmask // for next row as safe index for queen // placement will be decided by these three bit // masks. // We have all three rowmask, ldmask and // rdmask as 0 in beginning. Suppose, we are // placing queen at 1st column index at 0th row. // rowmask, ldmask and rdmask will change for // next row as below: // rowmask's 1st bit will be set by OR operation // rowmask = 00000000000000000000000000000010 // ldmask will change by setting 1st // bit by OR operation and left shifting // by 1 as it has to block the next column // of next row because that will fall on left // diagonal. ldmask = // 00000000000000000000000000000100 // rdmask will change by setting 1st bit // by OR operation and right shifting by 1 // as it has to block the previous column // of next row because that will fall on right // diagonal. rdmask = // 00000000000000000000000000000001 // these bit masks will keep updated in each // iteration for next row solveBoard(board, row + 1 , rowmask | p, (ldmask | p) << 1 , (rdmask | p) >> 1 ); // Reset right-most set bit to 0 so, // next iteration will continue by placing the // queen at another safe column index of this // row safe = safe & (safe - 1 ); // Backtracking, replace 'Q' by ' ' board[row][col] = ' ' ; } } // Program to print board public void printBoard( char [][] board) { for ( int i = 0 ; i < board.length; i++) { System.out.print( "|" ); for ( int j = 0 ; j < board[i].length; j++) { System.out.print(board[i][j] + "|" ); } System.out.println(); } } // Driver Code public static void main(String args[]) { // Board size int n = 4 ; char board[][] = new char [n][n]; for ( int i = 0 ; i < n; i++) { for ( int j = 0 ; j < n; j++) { board[i][j] = ' ' ; } } int rowmask = 0 , ldmask = 0 , rdmask = 0 ; int row = 0 ; NQueenSolution solution = new NQueenSolution(); // Function Call result.clear(); solution.solveBoard(board, row, rowmask, ldmask, rdmask); System.out.println(result); } } // This code is contributed by Nikhil Vinay |
Python3
# Python program for above approach import math result = [] # Program to solve N-Queens Problem def solveBoard(board, row, rowmask, ldmask, rdmask): n = len (board) # All_rows_filled is a bit mask # having all N bits set all_rows_filled = ( 1 << n) - 1 # If rowmask will have all bits set, means # queen has been placed successfully # in all rows and board is displayed if (rowmask = = all_rows_filled): v = [] for i in board: for j in range ( len (i)): if i[j] = = 'Q' : v.append(j + 1 ) result.append(v) # We extract a bit mask(safe) by rowmask, # ldmask and rdmask. all set bits of 'safe' # indicates the safe column index for queen # placement of this iteration for row index(row). safe = all_rows_filled & (~(rowmask | ldmask | rdmask)) while (safe > 0 ): # Extracts the right-most set bit # (safe column index) where queen # can be placed for this row p = safe & ( - safe) col = ( int )(math.log(p) / math.log( 2 )) board[row][col] = 'Q' # This is very important: # we need to update rowmask, ldmask and rdmask # for next row as safe index for queen placement # will be decided by these three bit masks. # We have all three rowmask, ldmask and # rdmask as 0 in beginning. Suppose, we are placing # queen at 1st column index at 0th row. rowmask, ldmask # and rdmask will change for next row as below: # rowmask's 1st bit will be set by OR operation # rowmask = 00000000000000000000000000000010 # ldmask will change by setting 1st # bit by OR operation and left shifting # by 1 as it has to block the next column # of next row because that will fall on left diagonal. # ldmask = 00000000000000000000000000000100 # rdmask will change by setting 1st bit # by OR operation and right shifting by 1 # as it has to block the previous column # of next row because that will fall on right diagonal. # rdmask = 00000000000000000000000000000001 # these bit masks will keep updated in each # iteration for next row solveBoard(board, row + 1 , rowmask | p, (ldmask | p) << 1 , (rdmask | p) >> 1 ) # Reset right-most set bit to 0 so, next # iteration will continue by placing the queen # at another safe column index of this row safe = safe & (safe - 1 ) # Backtracking, replace 'Q' by ' ' board[row][col] = ' ' # Program to print board def printBoard(board): for row in board: print ( "|" + "|" .join(row) + "|" ) # Driver Code def main(): n = 4 # board size board = [] for i in range (n): row = [] for j in range (n): row.append( ' ' ) board.append(row) rowmask = 0 ldmask = 0 rdmask = 0 row = 0 # Function Call result.clear() solveBoard(board, row, rowmask, ldmask, rdmask) result.sort() print (result) if __name__ = = "__main__" : main() # This code is contributed by Nikhil Vinay |
C#
// C# program to print all solutions in N-Queen Problem using System; using System.Collections; using System.Collections.Generic; public class NQueenSolution{ static List<List< int >> result = new List<List< int >>(); public void solveBoard( char [,] board, int row, int rowmask, int ldmask, int rdmask) { int n = board.GetLength(0); // All_rows_filled is a bit mask // having all N bits set int all_rows_filled = (1 << n) - 1; // If rowmask will have all bits set, // means queen has been placed successfully // in all rows and board is displayed if (rowmask == all_rows_filled) { List< int > v = new List< int >(); for ( int i = 0; i < n; i++) { for ( int j = 0; j < n; j++) { if (board[i,j] == 'Q' ) v.Add(j + 1); } } result.Add(v); return ; } // We extract a bit mask(safe) by rowmask, // ldmask and rdmask. all set bits of 'safe' // indicates the safe column index for queen // placement of this iteration for row index(row). int safe = ((all_rows_filled) & (~(rowmask | ldmask | rdmask))); while (safe > 0) { // Extracts the right-most set bit // (safe column index) where queen // can be placed for this row int p = safe & (-safe); int col = ( int )(Math.Log(p) / Math.Log(2)); board[row,col] = 'Q' ; // This is very important: // we need to update rowmask, ldmask and rdmask // for next row as safe index for queen // placement will be decided by these three bit // masks. // We have all three rowmask, ldmask and // rdmask as 0 in beginning. Suppose, we are // placing queen at 1st column index at 0th row. // rowmask, ldmask and rdmask will change for // next row as below: // rowmask's 1st bit will be set by OR operation // rowmask = 00000000000000000000000000000010 // ldmask will change by setting 1st // bit by OR operation and left shifting // by 1 as it has to block the next column // of next row because that will fall on left // diagonal. ldmask = // 00000000000000000000000000000100 // rdmask will change by setting 1st bit // by OR operation and right shifting by 1 // as it has to block the previous column // of next row because that will fall on right // diagonal. rdmask = // 00000000000000000000000000000001 // these bit masks will keep updated in each // iteration for next row solveBoard(board, row + 1, rowmask | p, (ldmask | p) << 1, (rdmask | p) >> 1); // Reset right-most set bit to 0 so, // next iteration will continue by placing the // queen at another safe column index of this // row safe = safe & (safe - 1); // Backtracking, replace 'Q' by ' ' board[row,col] = ' ' ; } } // Program to print board public void printBoard( char [,] board) { for ( int i = 0; i < board.GetLength(0); i++) { Console.Write( "|" ); for ( int j = 0; j < board.GetLength(1); j++) { Console.Write(board[i,j] + "|" ); } Console.Write( "\n" ); } } static public void Main (){ int n = 4; char [,] board = new char [n,n]; for ( int i = 0; i < n; i++) { for ( int j = 0; j < n; j++) { board[i,j] = ' ' ; } } int rowmask = 0, ldmask = 0, rdmask = 0; int row = 0; NQueenSolution solution = new NQueenSolution(); // Function Call result.Clear(); solution.solveBoard(board, row, rowmask, ldmask,rdmask); foreach ( var sublist in result) { Console.Write( "[" ); foreach ( int item in sublist) { Console.Write(item+ " " ); } Console.Write( "]" ); } } } // This code is contributed by shruti456rawal |
Javascript
// JS program for above approach let result = [] // Program to solve N-Queens Problem function solveBoard(board, row, rowmask, ldmask, rdmask) { let n = (board).length // All_rows_filled is a bit mask // having all N bits set let all_rows_filled = (1 << n) - 1 // If rowmask will have all bits set, means // queen has been placed successfully // in all rows and board is displayed if (rowmask == all_rows_filled) { let v = [] for (let i of board) for ( var j = 0; j < i.length; j++) { if (i[j] == 'Q' ) v.push(j+1) } result.push(v) } // We extract a bit mask(safe) by rowmask, // ldmask and rdmask. all set bits of 'safe' // indicates the safe column index for queen // placement of this iteration for row index(row). let safe = all_rows_filled & (~(rowmask | ldmask | rdmask)) while (safe > 0) { // Extracts the right-most set bit // (safe column index) where queen // can be placed for this row let p = safe & (-safe) let col = Math.floor(Math.log(p)/Math.log(2)) board[row][col] = 'Q' // This is very important // we need to update rowmask, ldmask and rdmask // for next row as safe index for queen placement // will be decided by these three bit masks. // We have all three rowmask, ldmask and // rdmask as 0 in beginning. Suppose, we are placing // queen at 1st column index at 0th row. rowmask, ldmask // and rdmask will change for next row as below // rowmask's 1st bit will be set by OR operation // rowmask = 00000000000000000000000000000010 // ldmask will change by setting 1st // bit by OR operation and left shifting // by 1 as it has to block the next column // of next row because that will fall on left diagonal. // ldmask = 00000000000000000000000000000100 // rdmask will change by setting 1st bit // by OR operation and right shifting by 1 // as it has to block the previous column // of next row because that will fall on right diagonal. // rdmask = 00000000000000000000000000000001 // these bit masks will keep updated in each // iteration for next row solveBoard(board, row+1, rowmask | p, (ldmask | p) << 1, (rdmask | p) >> 1) // Reset right-most set bit to 0 so, next // iteration will continue by placing the queen // at another safe column index of this row safe = safe & (safe-1) // Backtracking, replace 'Q' by ' ' board[row][col] = ' ' } } // Program to print board function printBoard(board) { for (let row of board) print("|" + (row).join( "|") + "|") } // Driver Code let n = 4 // board size let board = [] for (var i = 0; i < n; i++) { let row = [] for (var j = 0; j < n; j++) row.push(' ') board.push(row) } let rowmask = 0 let ldmask = 0 let rdmask = 0 let row = 0 // Function Call result = [] solveBoard(board, row, rowmask, ldmask, rdmask) result.sort() console.log(result) // This code is contributed by phasing17 |
[2 4 1 3 ][3 1 4 2 ]
This article is contributed by Sahil Chhabra. If you like neveropen and would like to contribute, you can also write an article using write.geeksforgeeks.org or mail your article to review-team@geeksforgeeks.org. See your article appearing on the neveropen main page and help other Geeks.
Iterative backtracking solution:
In this section of the article, an iterative backtracking solution without recursion is introduced. The code will mainly utilize two nested loops and a stack to keep track of the positions of queens on the board and use this stack to backtrack.
Algorithm:
n: is the number of rows, columns, and queens to be added.
1- Create 2D-array to represent the board with each cell in the array corresponding to a box in the board
2- Create a stack to keep track of the queens' positions where the queen on the top is always the most recently added queen.
3- set counter j = 1 which will be used loop through columns in the coming steps.
4- Create an outer loop through the rows from i = 1 ----> i = n
5- Create inner loop through columns from j ----> j = n.
6- in the inner body of loops check if the current cell is valid to add a queen
if valid
- add the queen to the board
- add the queen's position to the stack
- break the inner loop
7- after finishing or breaking the inner loop
a) set j = 1 (so the default is to start looping through the columns from j = 1 in the coming iteration)
b) check if the size of the stack equals the number of the row to see if a queen was placed in current row
if no queen was placed:
8- back track to the last added queen by doing the following:
a) accessing the position of the last added queen from the top of stack
b) delete the last added queen from the board
c) set i (counter for rows of the board) = the row of the last added queen
d) set j = the column of last added queen + 1
9- if i == n meaning that all rows are now visited and filled with queens
a) print solution
b) do step 8 again to test other solutions until the stack is empty
According to the below Implementation, the solutions will be printed as an n*n matrix of zeros and ones, where the cells = 1 represent the queens.
Below is the Implementation of the above algorithm
C++
#include <iostream> #include <stack> #include <utility> #include <vector> using namespace std; using vvi = vector<vector< int > >; using vi = vector< int >; void print(vvi board) { int count = 0; for ( auto & row : board) { for ( auto & el : row) if (el == 1) count++; } // Not valid solution if (count != board.size()) return ; // Print the matrix for ( auto & row : board) { for ( auto & el : row) cout << el << " " ; cout << '\n' ; } } bool validate(vvi board, int i, int j) { // validate rows for ( int c = 1; c <= j; c++) if (board[i - 1] == 1) return false ; // validate columns for ( int r = 1; r <= i; r++) if (board[r - 1][j - 1] == 1) return false ; // validate diagonals to right up corner int c = j; int r = i; while (c != 0 and r != 0) { if (board[r - 1] == 1) return false ; r--; c--; } // validate diagonals to left up corner c = j; r = i; while (c != board.size() + 1 and r != 0) { if (board[r - 1] == 1) return false ; r--; c++; } return true ; } void n_queen( int n) { vvi board(n, vi(n)); stack<pair< int , int > > queens_positions; // stores positions of added // queens int j = 1; for ( int i = 1; i <= board.size(); i++) { for (; j <= board.size(); j++) { if (validate(board, i, j)) { // check validity of cell // before adding the queen board[i - 1][j - 1] = 1; queens_positions.push(make_pair(i, j)); break ; } } j = 1; if (queens_positions.size() != i) { // checks if a queen was placed in the // current row if (!queens_positions.empty()) { pair< int , int > Q_last = queens_positions .top(); // position of last added // queen queens_positions.pop(); // backtracking board[Q_last.first - 1][Q_last.second - 1] = 0; // nulling the last added queen i = Q_last.first - 1; // going back to the row of the // last added queen j = Q_last.second + 1; // going back to the column of the // last added queen + 1 } } if (i == board.size()) { print(board); cout << '\n' ; if (!queens_positions.empty()) { pair< int , int > Q_last = queens_positions .top(); // position of last added // queen queens_positions.pop(); // backtracking board[Q_last.first - 1][Q_last.second - 1] = 0; // nulling the last added queen i = Q_last.first - 1; // going back to the row of the // last added queen j = Q_last.second + 1; // going back to the column of the // last added queen + 1 } } } } int main() { n_queen(4); } |
Java
import java.util.*; public class NQueenProblem { static void print( int [][] board) { int count = 0 ; for ( int [] row : board) { for ( int el : row) { if (el == 1 ) { count++; } } } // Not valid solution if (count != board.length) { return ; } // Print the matrix for ( int [] row : board) { for ( int el : row) { System.out.print(el + " " ); } System.out.println(); } } static boolean validate( int [][] board, int i, int j) { // validate rows for ( int c = 1 ; c <= j; c++) { if (board[i - 1 ] == 1 ) { return false ; } } // validate columns for ( int r = 1 ; r <= i; r++) { if (board[r - 1 ][j - 1 ] == 1 ) { return false ; } } // validate diagonals to right up corner int c = j; int r = i; while (c != 0 && r != 0 ) { if (board[r - 1 ] == 1 ) { return false ; } r--; c--; } // validate diagonals to left up corner c = j; r = i; while (c != board.length + 1 && r != 0 ) { if (board[r - 1 ] == 1 ) { return false ; } r--; c++; } return true ; } static void nQueen( int n) { int [][] board = new int [n][n]; Stack< int []> queensPositions = new Stack<>(); // stores positions of added // queens int j = 1 ; for ( int i = 1 ; i <= board.length; i++) { for (; j <= board.length; j++) { if (validate(board, i, j)) { // check validity of cell before adding // the queen board[i - 1 ][j - 1 ] = 1 ; queensPositions.push( new int [] { i, j }); break ; } } j = 1 ; if (queensPositions.size() != i) { // checks if a queen was placed in the // current row if (!queensPositions.empty()) { // position of last added queen int [] qLast = queensPositions.pop(); // backtracking board[qLast[ 0 ] - 1 ][qLast[ 1 ] - 1 ] = 0 ; // nulling the last added queen i = qLast[ 0 ] - 1 ; // going back to the row of the // last added queen j = qLast[ 1 ] + 1 ; // going back to the column of // the last added queen + 1 } } if (i == board.length) { print(board); System.out.println(); if (!queensPositions.empty()) { // position of last added queen int [] qLast = queensPositions.pop(); // backtracking board[qLast[ 0 ] - 1 ][qLast[ 1 ] - 1 ] = 0 ; // nulling the last added queen i = qLast[ 0 ] - 1 ; // going back to the row of the // last added queen j = qLast[ 1 ] + 1 ; // going back to the column of // the last added queen + 1 } } } } public static void main(String[] args) { nQueen( 4 ); } } |
Python3
class NQueenProblem: def print_board(board): count = 0 for row in board: for el in row: if el = = 1 : count + = 1 # Not a valid solution if count ! = len (board): return # Print the matrix for row in board: for el in row: print (el, end = " " ) print () def validate(board, i, j): # Validate rows for c in range (j): if board[i] = = 1 : return False # Validate columns for r in range (i): if board[r][j] = = 1 : return False # Validate diagonals to right up corner r, c = i, j while c > = 0 and r > = 0 : if board[r] = = 1 : return False r - = 1 c - = 1 # Validate diagonals to left up corner r, c = i, j while c < len (board) and r > = 0 : if board[r] = = 1 : return False r - = 1 c + = 1 return True def n_queen(n): solutions = [] # Store all valid solutions board = [[ 0 ] * n for _ in range (n)] stack = [] # Stack to simulate recursive calls row, col = 0 , 0 while True : # Try to place a queen in the current row while col < n: if NQueenProblem.validate(board, row, col): board[row][col] = 1 stack.append((row, col)) col = 0 break col + = 1 else : if not stack: # No valid placement found and no backtrack is possible break row, col = stack.pop() board[row][col] = 0 col + = 1 continue if row = = n - 1 : # A valid solution is found solution = [row[:] for row in board] solutions.append(solution) board[row][col] = 0 col + = 1 continue row + = 1 for solution in solutions: NQueenProblem.print_board(solution) print () NQueenProblem.n_queen( 4 ) # This code is contributed by guptapratik |
C#
using System; using System.Collections.Generic; class NQueenProblem { static void Print( int [,] board) { int count = 0; foreach ( int el in board) { if (el == 1) { count++; } } // Not valid solution if (count != board.GetLength(0)) { return ; } // Print the matrix for ( int i = 0; i < board.GetLength(0); i++) { for ( int j = 0; j < board.GetLength(1); j++) { Console.Write(board[i, j] + " " ); } Console.WriteLine(); } } static bool Validate( int [,] board, int i, int j) { // validate rows int c; for (c = 1; c <= j; c++) { if (board[i - 1, c - 1] == 1) { return false ; } } // validate columns int r; for (r = 1; r <= i; r++) { if (board[r - 1, j - 1] == 1) { return false ; } } // validate diagonals to right up corner c = j; r = i; while (c != 0 && r != 0) { if (board[r - 1, c - 1] == 1) { return false ; } r--; c--; } // validate diagonals to left up corner c = j; r = i; while (c != board.GetLength(1) + 1 && r != 0) { if (board[r - 1, c - 1] == 1) { return false ; } r--; c++; } return true ; } static void NQueen( int n) { int [,] board = new int [n, n]; Stack< int []> queensPositions = new Stack< int []>(); // stores positions of added queens int j = 1; for ( int i = 1; i <= board.GetLength(0); i++) { for (; j <= board.GetLength(1); j++) { if (Validate(board, i, j)) { // check validity of cell before adding the queen board[i - 1, j - 1] = 1; queensPositions.Push( new int [] { i, j }); break ; } } j = 1; if (queensPositions.Count != i) { // checks if a queen was placed in the current row if (queensPositions.Count > 0) { // position of last added queen int [] qLast = queensPositions.Pop(); // backtracking board[qLast[0] - 1, qLast[1] - 1] = 0; // nulling the last added queen i = qLast[0] - 1; // going back to the row of the last added queen j = qLast[1] + 1; // going back to the column of the last added queen + 1 } } if (i == board.GetLength(0)) { Print(board); Console.WriteLine(); if (queensPositions.Count > 0) { // position of last added queen int [] qLast = queensPositions.Pop(); // backtracking board[qLast[0] - 1,qLast[1] - 1] = 0; // nulling the last added queen i = qLast[0] - 1; // going back to the row of the // last added queen j = qLast[1]+ 1; // going back to the column of // the last added queen + 1 } } } } public static void Main(String[] args) { NQueen(4); } } |
Javascript
// JS program to implement the approach // This function prints the board function print(board) { // Counting set positions in the board let count = 0; for (let i = 0; i < board.length; i++) { for (let j = 0; j < board[i].length; j++) { if (board[i][j] === 1) count++; } } // Not valid solution if (count !== board.length) return ; // Printing the matrix for (let i = 0; i < board.length; i++) { let row = '' ; for (let j = 0; j < board[i].length; j++) { row += board[i][j] + ' ' ; } console.log(row); } } // This function validates the board function validate(board, i, j) { // validate rows for (let c = 1; c <= j; c++) { if (board[i - 1] === 1) return false ; } // validates columns for (let r = 1; r <= i; r++) { if (board[r - 1][j - 1] === 1) return false ; } // validate diagonals to right up corner let c = j; let r = i; while (c !== 0 && r !== 0) { if (board[r - 1] === 1) return false ; r--; c--; } // validate diagonals to left up corner c = j; r = i; while (c !== board.length + 1 && r !== 0) { if (board[r - 1] === 1) return false ; r--; c++; } return true ; } // This function solves the N Queen problem function n_queen(n) { // Initializing the board let board = Array(n).fill().map(() => Array(n).fill(0)); // stores positions of added queens let queens_positions = []; let j = 1; // Building the board for (let i = 1; i <= board.length; i++) { for (; j <= board.length; j++) { if (validate(board, i, j)) { // check validity of cell // before adding the queen board[i - 1][j - 1] = 1; queens_positions.push([i, j]); break ; } } j = 1; if (queens_positions.length !== i) { // checks if a queen was placed in the // current row if (queens_positions.length > 0) { // position of last added queen let Q_last = queens_positions[queens_positions.length - 1]; queens_positions.pop(); // backtracking board[Q_last[0] - 1][Q_last[1] - 1] = 0; // nulling the last added queen i = Q_last[0] - 1; // going back to the row of the // last added queen j = Q_last[1] + 1; // going back to the column of the // last added queen + 1 } } if (i === board.length) { print(board); console.log( '' ); if (queens_positions.length > 0) { let Q_last = queens_positions[queens_positions.length - 1]; // position of last added queen queens_positions.pop(); // backtracking board[Q_last[0] - 1][Q_last[1] - 1] = 0; // nulling the last added queen i = Q_last[0] - 1; // going back to the row of the // last added queen j = Q_last[1] + 1; // going back to the column of the // last added queen + 1 } } } } // Driver code const n = 4; // Function call n_queen(n); // This code is contributed by phasing17 |
0 1 0 0 0 0 0 1 1 0 0 0 0 0 1 0 0 0 1 0 1 0 0 0 0 0 0 1 0 1 0 0
Time Complexity: O(n2 * n!), where n is the size of the board.
Space Complexity: O(n2)
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!