leetcode Count of Smaller Numbers After Self
You are given an integer array nums and you have to return a new counts array. The counts array has the property where
counts[i]
is the number of smaller elements to the right ofnums[i]
.Example:
Given nums = [5, 2, 6, 1]
To the right of 5 there are 2 smaller elements (2 and 1). To the right of 2 there is only 1 smaller element (1). To the right of 6 there is 1 smaller element (1). To the right of 1 there is 0 smaller element.
Return the array
[2, 1, 1, 0]
.
题目地址 leetcode Count of Smaller Numbers After Self
题意:
给定nums数组,求数组中每个元素i的右边比其小的数
思路:
简单的说就是求逆序数。
使用逆序数有经典的解法为合并排序。
用Fenwick树 关于Fenwick 树介绍 Binary indexed tree (Fenwick tree)
- 简单说就是看当前数在nums中排第几,然后对小于它的数求个数和
- 具体的做法是先离散化,确定每个数载nums中排到第几 (去重和排序)
- 然后从右向左扫描,每次统计比其小于1的个数(就是求和),然后把当前的数加入Fenwick中。
merge_sort
C++
1 | struct Node { |
Binary indexed tree (Fenwick tree)
C++ 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
45class FenwickTree {
vector<int> sum_array;
int n;
inline int lowbit(int x) {
return x & -x;
}
public:
FenwickTree(int n) :n(n), sum_array(n + 1, 0) {}
void add(int x, int val) {
while (x <= n) {
sum_array[x] += val;
x += lowbit(x);
}
}
int sum(int x) {
int res = 0;
while (x > 0) {
res += sum_array[x];
x -= lowbit(x);
}
return res;
}
};
class Solution {
public:
vector<int> countSmaller(vector<int>& nums) {
vector<int> temp_num = nums;
sort(temp_num.begin(), temp_num.end());
unordered_map<int,int> dic;
for (int i = 0; i < temp_num.size(); i++)
dic[temp_num[i]] = i + 1;
FenwickTree tree(nums.size());
vector<int> ans(nums.size(),0);
for (int i = nums.size() - 1; i >= 0; i--) {
ans[i] = tree.sum(dic[nums[i]] - 1);
tree.add(dic[nums[i]],1);
}
return ans;
}
};
Python 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
35class FenwickTree(object):
def __init__(self, n):
self.sum_array = [0] * (n + 1)
self.n = n
def lowbit(self, x):
return x & -x
def add(self, x, val):
while x <= self.n:
self.sum_array[x] += val
x += self.lowbit(x)
def sum(self, x):
res = 0
while x > 0:
res += self.sum_array[x]
x -= self.lowbit(x)
return res
class Solution(object):
def countSmaller(self, nums):
"""
:type nums: List[int]
:rtype: List[int]
"""
dic = {}
for i, num in enumerate(sorted(list(set(nums)))):
dic[num] = i + 1
tree = FenwickTree(len(nums))
ans = [0] * len(nums)
for i in xrange(len(nums) - 1, -1, -1):
ans[i] = tree.sum(dic[nums[i]] - 1)
tree.add(dic[nums[i]], 1)
return ans