forked from TARANG0503/DSA-Practice
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNQueen.java
More file actions
84 lines (78 loc) · 1.94 KB
/
Copy pathNQueen.java
File metadata and controls
84 lines (78 loc) · 1.94 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
package com.dsa;
import jdk.swing.interop.SwingInterOpUtils;
// time complexity is O(n^3 + n!) = O(n!)
public class NQueen {
public static void main(String[] args) {
int n=5;
boolean[][] board = new boolean[n][n];
System.out.println(queens(board,0));
}
static int queens(boolean[][] board , int row)
{
if(row==board.length)
{
display(board);
System.out.println();
return 1;
}
int count =0;
//placing the queen and checking for every row and col
for(int col=0;col<board.length;col++)
{
if(isSafe(board,row,col))
{
board[row][col]=true;
count+= queens(board,row+1);
board[row][col]=false;
}
}
return count;
}
private static boolean isSafe(boolean[][] board,int row, int col)
{
//check vertical row
for(int i=0;i<row;i++)
{
if(board[i][col])
{
return false;
}
}
//diagonal left
int maxLeft = Math.min(row,col);
for(int i=1;i<=maxLeft;i++)
{
if(board[row-i][col-i])
{
return false;
}
}
//diagonal right
int maxRight = Math.min(row,board.length-col-1);
for(int i=1;i<=maxRight;i++)
{
if(board[row-i][col+i])
{
return false;
}
}
return true;
}
private static void display(boolean[][] board)
{
for(boolean[] row : board)
{
for (boolean element : row)
{
if(element)
{
System.out.print("Q ");
}
else{
System.out.print("X ");
}
}
System.out.println();
}
}
}