Search
 
SCRIPT & CODE EXAMPLE
 

CPP

N Queens C++

#include <bits/stdc++.h>

using namespace std;
class Solution {
  public:
    void solve(int col, vector < string > & board, vector < vector < string >> & ans, vector < int > & leftrow, vector < int > & upperDiagonal, vector < int > & lowerDiagonal, int n) {
      if (col == n) {
        ans.push_back(board);
        return;
      }
      for (int row = 0; row < n; row++) {
        if (leftrow[row] == 0 && lowerDiagonal[row + col] == 0 && upperDiagonal[n - 1 + col - row] == 0) {
          board[row][col] = 'Q';
          leftrow[row] = 1;
          lowerDiagonal[row + col] = 1;
          upperDiagonal[n - 1 + col - row] = 1;
          solve(col + 1, board, ans, leftrow, upperDiagonal, lowerDiagonal, n);
          board[row][col] = '.';
          leftrow[row] = 0;
          lowerDiagonal[row + col] = 0;
          upperDiagonal[n - 1 + col - row] = 0;
        }
      }
    }

  public:
    vector < vector < string >> solveNQueens(int n) {
      vector < vector < string >> ans;
      vector < string > board(n);
      string s(n, '.');
      for (int i = 0; i < n; i++) {
        board[i] = s;
      }
      vector < int > leftrow(n, 0), upperDiagonal(2 * n - 1, 0), lowerDiagonal(2 * n - 1, 0);
      solve(0, board, ans, leftrow, upperDiagonal, lowerDiagonal, n);
      return ans;
    }
};
int main() {
  int n = 4; // we are taking 4*4 grid and 4 queens
  Solution obj;
  vector < vector < string >> ans = obj.solveNQueens(n);
  for (int i = 0; i < ans.size(); i++) {
    cout << "Arrangement " << i + 1 << "
";
    for (int j = 0; j < ans[0].size(); j++) {
      cout << ans[i][j];
      cout << endl;
    }
    cout << endl;
  }
  return 0;
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: c++ random number generator uniform distribution 
Cpp :: qt label set text color 
Cpp :: char vector to string c++ 
Cpp :: how to access struct variables in c++ 
Cpp :: reading in lines from a file to a vector c++ 
Cpp :: add partition mysql 
Cpp :: user input c++ 
Cpp :: Write C++ program to copy one string to another string using pointers 
Cpp :: how to make crypto 
Cpp :: sum of stack c++ 
Cpp :: cpp goiver all the map values 
Cpp :: cannot open include file: 
Cpp :: maximum value in map in c++ 
Cpp :: mpi_bcast 
Cpp :: c++ competitive programming mst 
Cpp :: bash test empty directory 
Cpp :: c++ infinite for loop 
Cpp :: built in led 
Cpp :: character array to string c++ stl 
Cpp :: http.begin not working 
Cpp :: scan line in c++ 
Cpp :: c++ nested switch statements 
Cpp :: print all elements of vector c++ 
Cpp :: doubly linked list c++ code 
Cpp :: c++ find_if 
Cpp :: bitwise count total set bits 
Cpp :: c++ colored output 
Cpp :: c++ vector size 
Cpp :: c++ int 
Cpp :: create copy constructor c++ 
ADD CONTENT
Topic
Content
Source link
Name
1+7 =