forked from shuboc/LeetCode-2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
median-of-two-sorted-arrays.cpp
93 lines (84 loc) · 3.19 KB
/
median-of-two-sorted-arrays.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
81
82
83
84
85
86
87
88
89
90
91
92
93
// Time: O(log(min(m, n)))
// Space: O(1)
class Solution {
public:
double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
if ((nums1.size() + nums2.size()) % 2 == 1) {
return findKthInTwoSortedArrays(nums1, nums2, (nums1.size() + nums2.size()) / 2 + 1);
} else {
return (findKthInTwoSortedArrays(nums1, nums2, (nums1.size() + nums2.size()) / 2) +
findKthInTwoSortedArrays(nums1, nums2, (nums1.size() + nums2.size()) / 2 + 1)) / 2.0;
}
}
int findKthInTwoSortedArrays(const vector<int>& A, const vector<int>& B,
int k) {
const int m = A.size();
const int n = B.size();
// Make sure m is the smaller one.
if (m > n) {
return findKthInTwoSortedArrays(B, A, k);
}
int left = 0;
int right = m;
// Find a partition of A and B
// where min left s.t. A[left] >= B[k - 1 - left]. Thus A[left] is the (k+1)-th or above element.
while (left < right) {
int mid = left + (right - left) / 2;
if (0 <= k - 1 - mid && k - 1 - mid < n && A[mid] >= B[k - 1 - mid]) {
right = mid;
} else {
left = mid + 1;
}
}
int Ai_minus_1 = left - 1 >= 0 ? A[left - 1] : numeric_limits<int>::min();
int Bj = k - 1 - left >= 0 ? B[k - 1 - left] : numeric_limits<int>::min();
// kth element would be A[left - 1] or B[k - 1 - left].
return max(Ai_minus_1, Bj);
}
};
// Time: O(log(max(m, n)) * log(max_val - min_val))
// Space: O(1)
// Generic solution.
class Solution_Generic {
public:
double findMedianSortedArrays(vector<int>& nums1, vector<int>& nums2) {
vector<vector<int> *> arrays{&nums1, &nums2};
if ((nums1.size() + nums2.size()) % 2 == 1) {
return findKthInSortedArrays(arrays, (nums1.size() + nums2.size()) / 2 + 1);
} else {
return (findKthInSortedArrays(arrays, (nums1.size() + nums2.size()) / 2) +
findKthInSortedArrays(arrays, (nums1.size() + nums2.size()) / 2 + 1)) / 2.0;
}
}
private:
int findKthInSortedArrays(const vector<vector<int> *>& arrays, int k) {
int left = numeric_limits<int>::max();
int right = numeric_limits<int>::min();
for (const auto array : arrays) {
if (!array->empty()) {
left = min(left, array->front());
right = max(right, array->back());
}
}
// left xxxxxxxooooooo right, find first xo or oo
while (left <= right) {
const auto mid = left + (right - left) / 2;
if (match(arrays, mid, k)) {
right = mid - 1;
} else {
left = mid + 1;
}
}
return left;
}
bool match(const vector<vector<int> *>& arrays, int num, int target) {
int res = 0;
for (const auto array : arrays) {
if (!array->empty()) {
res += distance(upper_bound(array->cbegin(), array->cend(), num),
array->cend());
}
}
return res < target;
}
};