2563. Count the Number of Fair Pairs
Difficulty: Medium
Topics: Array
, Two Pointers
, Binary Search
, Sorting
Given a 0-indexed integer array nums
of size n
and two integers lower
and upper
, return the number of fair pairs.
A pair (i, j)
is fair if:
-
0 <= i < j < n
, and lower <= nums[i] + nums[j] <= upper
Example 1:
- Input: nums = [0,1,7,4,4,5], lower = 3, upper = 6
- Output: 6
- Explanation: There are 6 fair pairs: (0,3), (0,4), (0,5), (1,3), (1,4), and (1,5).
Example 2:
- Input: nums = [1,7,9,2,5], lower = 11, upper = 11
- Output: 1
- Explanation: There is a single fair pair: (2,3).
Constraints:
1 <= nums.length <= 105
- nums.length == n
-109 <= nums[i] <= 109
-109 <= lower <= upper <= 109
Hint:
- Sort the array in ascending order.
- For each number in the array, keep track of the smallest and largest numbers in the array that can form a fair pair with this number.
- As you move to larger number, both boundaries move down.
Solution:
We can use the following approach:
- Sort the Array: Sorting helps us leverage the two-pointer technique and perform binary searches more effectively.
- Two-Pointer Technique: For each element in the sorted array, we can calculate the range of elements that can form a fair pair with it. We use binary search to find this range.
-
Binary Search for Bounds: For each element
nums[i]
, find the range[lower, upper] - nums[i]
forj > i
. We use binary search to find the smallest and largest indices that satisfy this range.
Let's implement this solution in PHP: 2563. Count the Number of Fair Pairs
<?php
/**
* @param Integer[] $nums
* @param Integer $lower
* @param Integer $upper
* @return Integer
*/
function countFairPairs($nums, $lower, $upper) {
...
...
...
/**
* go to ./solution.php
*/
}
/**
* Helper function for binary search to find left boundary
*
* @param $arr
* @param $target
* @param $start
* @return int|mixed
*/
function lowerBound($arr, $target, $start) {
...
...
...
/**
* go to ./solution.php
*/
}
/**
* Helper function for binary search to find right boundary
*
* @param $arr
* @param $target
* @param $start
* @return int|mixed
*/
function upperBound($arr, $target, $start) {
...
...
...
/**
* go to ./solution.php
*/
}
// Example usage:
$nums = [0, 1, 7, 4, 4, 5];
$lower = 3;
$upper = 6;
echo countFairPairs($nums, $lower, $upper); // Output: 6
?>
Explanation:
-
Sorting: We sort the array
nums
to make it easier to find valid pairs with binary search. -
Binary Search Bounds:
- For each element
nums[i]
, we find thelow
andhigh
values, which are the bounds we want the sum to fall within. - We use two binary searches to find the range of indices
[left, right)
wherenums[i] + nums[j]
falls within[lower, upper]
.
- For each element
-
Counting Pairs: We add the count of valid indices between
left
andright
for eachi
.
This approach has a time complexity of O(n log n) due to sorting and binary search for each element, which is efficient enough for large inputs.
Contact Links
If you found this series helpful, please consider giving the repository a star on GitHub or sharing the post on your favorite social networks 😍. Your support would mean a lot to me!
If you want more helpful content like this, feel free to follow me:
Top comments (0)