-
Notifications
You must be signed in to change notification settings - Fork 521
/
Copy pathReverse Pairs.cpp
80 lines (66 loc) · 1.47 KB
/
Reverse Pairs.cpp
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
/*
Reverse Pairs
=============
Given an integer array nums, return the number of reverse pairs in the array.
A reverse pair is a pair (i, j) where 0 <= i < j < nums.length and nums[i] > 2 * nums[j].
Example 1:
Input: nums = [1,3,2,3,1]
Output: 2
Example 2:
Input: nums = [2,4,3,5,1]
Output: 3
Constraints:
1 <= nums.length <= 5 * 104
231 <= nums[i] <= 231 - 1
*/
class Solution
{
public:
int merge(vector<int> &nums, int low, int mid, int high)
{
int count = 0;
int i = low, j = mid + 1;
// count pairs
while (i <= mid)
{
while (j <= high && nums[i] > 2LL * nums[j])
j++;
count += (j - (mid + 1));
i++;
}
// merge the sorted arrays
vector<int> temp;
i = low;
j = mid + 1;
while (i <= mid && j <= high)
{
if (nums[i] < nums[j])
temp.push_back(nums[i++]);
else
temp.push_back(nums[j++]);
}
while (i <= mid)
temp.push_back(nums[i++]);
while (j <= high)
temp.push_back(nums[j++]);
for (int k = low; k <= high; ++k)
nums[k] = temp[k - low];
return count;
}
int mergeSort(vector<int> &nums, int low, int high)
{
int count = 0;
if (low < high)
{
int mid = (low + high) / 2;
count += mergeSort(nums, low, mid);
count += mergeSort(nums, mid + 1, high);
count += merge(nums, low, mid, high);
}
return count;
}
int reversePairs(vector<int> &nums)
{
return mergeSort(nums, 0, nums.size() - 1);
}
};