forked from doocs/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSolution2.java
70 lines (64 loc) · 1.63 KB
/
Solution2.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
64
65
66
67
68
69
70
class BinaryIndexedTree {
private int n;
private int[] c;
public BinaryIndexedTree(int n) {
this.n = n;
this.c = new int[n + 1];
}
public void update(int x, int v) {
while (x <= n) {
c[x] += v;
x += x & -x;
}
}
public int query(int x) {
int s = 0;
while (x > 0) {
s += c[x];
x -= x & -x;
}
return s;
}
}
class Solution {
public int numTeams(int[] rating) {
int n = rating.length;
int[] nums = rating.clone();
Arrays.sort(nums);
int m = 0;
for (int i = 0; i < n; ++i) {
if (i == 0 || nums[i] != nums[i - 1]) {
nums[m++] = nums[i];
}
}
BinaryIndexedTree tree1 = new BinaryIndexedTree(m);
BinaryIndexedTree tree2 = new BinaryIndexedTree(m);
for (int v : rating) {
int x = search(nums, v);
tree2.update(x, 1);
}
int ans = 0;
for (int i = 0; i < n; ++i) {
int x = search(nums, rating[i]);
tree1.update(x, 1);
tree2.update(x, -1);
int l = tree1.query(x - 1);
int r = n - i - 1 - tree2.query(x);
ans += l * r;
ans += (i - l) * (n - i - 1 - r);
}
return ans;
}
private int search(int[] nums, int x) {
int l = 0, r = nums.length;
while (l < r) {
int mid = (l + r) >> 1;
if (nums[mid] >= x) {
r = mid;
} else {
l = mid + 1;
}
}
return l + 1;
}
}