-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path52.n-queens-ii.go
88 lines (81 loc) · 1.32 KB
/
52.n-queens-ii.go
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
85
86
87
88
// package main
/*
* @lc app=leetcode id=52 lang=golang
*
* [52] N-Queens II
*
* https://leetcode.com/problems/n-queens-ii/description/
*
* algorithms
* Hard (50.45%)
* Total Accepted: 92K
* Total Submissions: 182.1K
* Testcase Example: '4'
*
* The n-queens puzzle is the problem of placing n queens on an n×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.
*
* Example:
*
*
* Input: 4
* Output: 2
* Explanation: There are two distinct solutions to the 4-queens puzzle as
* shown below.
* [
* [".Q..", // Solution 1
* "...Q",
* "Q...",
* "..Q."],
*
* ["..Q.", // Solution 2
* "Q...",
* "...Q",
* ".Q.."]
* ]
*
*
*/
func totalNQueens(n int) int {
var cols []int
var ret int
search(cols, n, &ret)
return ret
}
func search(x []int, n int, count *int) {
if len(x) == n {
(*count)++
return
}
for i := 0; i < n; i++ {
if !isValid(x, i) {
continue
}
x = append(x, i)
search(x, n, count)
x = x[0 : len(x)-1]
}
}
func isValid(x []int, y int) bool {
l := len(x)
for k := range x {
if x[k] == y {
return false
}
if l-k == x[k]-y {
return false
}
if l-k == y-x[k] {
return false
}
}
return true
}
// func main() {
// fmt.Println(totalNQueens(4))
// }