Premium Only Content

2563. Count the Number of Fair Pairs
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
class Solution {
public:
long long lower_bound(vector<int>& nums, int low, int high, int element) {
while (low <= high) {
int mid = low + ((high - low) / 2);
if (nums[mid] >= element) {
high = mid - 1;
} else
low = mid + 1;
}
return low;
}
long long countFairPairs(vector<int>& nums, int lower, int upper) {
sort(nums.begin(), nums.end());
long long ans = 0;
for (int i = 0; i < nums.size(); i++) {
// Assume we have picked nums[i] as the first pair element.
// `low` indicates the number of possible pairs with sum < lower.
int low =
lower_bound(nums, i + 1, nums.size() - 1, lower - nums[i]);
// `high` indicates the number of possible pairs with sum <= upper.
int high =
lower_bound(nums, i + 1, nums.size() - 1, upper - nums[i] + 1);
// Their difference gives the number of elements with sum in the
// given range.
ans += 1LL * (high - low);
}
return ans;
}
};
-
UPCOMING
Sarah Westall
44 minutes agoCEO of Crowds on Demand: The Fake World of Social Media, Protests & Movements w/ Adam Swart
32 -
LIVE
Geeks + Gamers
3 hours agoTuesday Night's Main Event
775 watching -
40:36
RiftTV
2 hours agoHow We Got 400 Leftists FIRED for MOCKING Charlie Kirk | The Rift | Guest: Olivia Krolczyk
22.8K14 -
UPCOMING
Badlands Media
16 hours agoBadlands Story Hour Ep 134: Godzilla Minus One
10.3K1 -
UPCOMING
Patriots With Grit
11 hours agoWrongful Death Without Consequences: Inside the Schara Trial | Scott Schara
124 -
LIVE
LFA TV
14 hours agoLFA TV ALL DAY STREAM - TUESDAY 9/16/25
887 watching -
LIVE
StevieTLIVE
1 hour agoWarzone Community Games to Start into Quads w/ The Fellas
88 watching -
1:00:14
BonginoReport
4 hours agoSpeech Police Bondi Under Fire - Nightly Scroll w/ Hayley Caronia (Ep.135)
148K75 -
LIVE
Heart & Mind with Dr. Dina McMillan
8 hours ago"Heart & Mind with Dr. Dina McMillan: Episode 57 - Honoring Charlie Kirk - Where to from Here?"
51 watching -
1:01:26
The Nick DiPaolo Show Channel
5 hours agoTrans Network Being Investigated | The Nick Di Paolo Show #1794
39.7K38