forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution2.go
55 lines (51 loc) · 1011 Bytes
/
Solution2.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
type BinaryIndexedTree struct {
n int
c []int
}
func newBinaryIndexedTree(n int) *BinaryIndexedTree {
c := make([]int, n+1)
return &BinaryIndexedTree{n, c}
}
func (this *BinaryIndexedTree) update(x, delta int) {
for x <= this.n {
this.c[x] += delta
x += x & -x
}
}
func (this *BinaryIndexedTree) query(x int) int {
s := 0
for x > 0 {
s += this.c[x]
x -= x & -x
}
return s
}
func numTeams(rating []int) (ans int) {
nums := make([]int, len(rating))
copy(nums, rating)
sort.Ints(nums)
m := 0
for i, x := range nums {
if i == 0 || x != nums[i-1] {
nums[m] = x
m++
}
}
nums = nums[:m]
tree1 := newBinaryIndexedTree(m)
tree2 := newBinaryIndexedTree(m)
for _, x := range rating {
tree2.update(sort.SearchInts(nums, x)+1, 1)
}
n := len(rating)
for i, v := range rating {
x := sort.SearchInts(nums, v) + 1
tree1.update(x, 1)
tree2.update(x, -1)
l := tree1.query(x - 1)
r := n - i - 1 - tree2.query(x)
ans += l * r
ans += (i - l) * (n - i - 1 - r)
}
return
}