-
Notifications
You must be signed in to change notification settings - Fork 1k
/
Copy pathNqueens.java
63 lines (61 loc) · 2.23 KB
/
Nqueens.java
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
import java.io.*;
import java.util.*;
public class Nqueens
{
static HashSet<Integer> ldia = new HashSet<Integer>();
static HashSet<Integer> rdia = new HashSet<Integer>();
public static void find(int count,int ro,HashSet<Integer> row,HashSet<Integer> col,int A,ArrayList<String> temp,StringBuilder build,StringBuilder dummy,ArrayList<ArrayList<String>> ans)
{
if(count == A)
{
ans.add(new ArrayList<String>(temp));
return;
}
for(int i=0;i<A;i++)
{
if(!row.contains(ro) && !col.contains(i) && !ldia.contains(ro + i) && !rdia.contains(A - i - 1 + ro))
{
build = new StringBuilder(dummy);
build.setCharAt(i,'Q');
temp.add(new String(build.toString()));
row.add(ro);col.add(i);ldia.add(ro + i);rdia.add(A - i - 1 + ro);
find(count+1,ro+1,row,col,A,temp,build,dummy,ans);
row.remove(ro);col.remove(i);ldia.remove(ro+i);rdia.remove(A - i - 1 + ro);
build = new StringBuilder(dummy);
temp.remove(temp.size() - 1);
}
}
}
public static ArrayList<ArrayList<String>> solveNQueens(int A)
{
StringBuilder build = new StringBuilder();
StringBuilder dummy = new StringBuilder();
ArrayList<ArrayList<String>> ans = new ArrayList<>();
for(int i=0;i<A;i++)
{
build.append(".");
dummy.append(".");
}
HashSet<Integer> row = new HashSet<>();
HashSet<Integer> col = new HashSet<>();
ArrayList<String> temp = new ArrayList<>();
find(0,0,row,col,A,temp,build,dummy,ans);
return ans;
}
public static void main(String[] args)
{
Scanner in = new Scanner(System.in);
System.out.print("Enter the size of ChessBoard : ");
int n = in.nextInt();
ArrayList<ArrayList<String>> ans = solveNQueens(n);
for(int i=0;i<ans.size();i++)
{
System.out.println("Solution : " + (i+1));
ArrayList<String> temp = ans.get(i);
for(int j=0;j<temp.size();j++)
{
System.out.println(temp.get(j));
}
}
}
}