719. Find K-th Smallest Pair Distance
Input:
nums = [1,3,1]
k = 1
Output: 0
Explanation:
Here are all the pairs:
(1,3) -> 2
(1,1) -> 0
(3,1) -> 2
Then the 1st smallest distance pair is (1,1), and its distance is 0.// Sort + Binary Search
int smallestDistancePair(vector<int>& nums, int k) { // time: O(nlogn + n^2 * log(max - min)); space: O(1)
sort(nums.begin(), nums.end());
int l = 0, r = nums.back() - nums.front(), n = nums.size();
while (l < r) {
int mid = l + (r - l) / 2, cnt = 0;
for (int i = 0, j = 0; i < n; ++i) {
while (j < n && nums[j] - nums[i] <= mid) ++j;
cnt += (j - i - 1);
}
if (cnt < k) l = mid + 1;
else r = mid;
}
return r;
}Previous668. Kth Smallest Number in Multiplication TableNext774. Minimize Max Distance to Gas Station
Last updated