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 countFairPairs(vector<int>& nums, int lower, int upper) {
ranges::sort(nums);
return countLess(nums, upper) - countLess(nums, lower - 1);
}
private:
long countLess(const vector<int>& nums, int sum) {
long res = 0;
for (int i = 0, j = nums.size() - 1; i < j; ++i) {
while (i < j && nums[i] + nums[j] > sum)
--j;
res += j - i;
}
return res;
}
};
-
43:44
Man in America
7 hours agoAmericans Are About to Lose Everything—And They Don’t Even Know It
37.1K21 -
Adam Does Movies
2 days ago $1.14 earnedTalking Movies + Ask Me Anything - LIVE
27.3K1 -
LIVE
I_Came_With_Fire_Podcast
13 hours agoNASA Blocks China, TPUSA BOOSTED, Chinese Spamoflauge, & Factional Division
262 watching -
33:40
Jamie Kennedy
5 hours agoEp 222 Processing the Loss of Charlie Kirk | HTBITY with Jamie Kennedy
46.4K17 -
1:32:05
Badlands Media
20 hours agoAltered State S3 Ep. 46: Tactical Nukes, Thermite, and the 9/11 Puzzle
62.6K5 -
9:18
ARFCOM News
10 hours ago $1.63 earnedNSSF "Celebrates" ATF Partnership | Glocks BANNED | Redundant Spooky Boi Ban
32.4K9 -
13:09:13
LFA TV
18 hours agoLFA TV ALL DAY STREAM - WEDNESDAY 9/17/25
304K61 -
1:00:00
BEK TV
1 day agoAPRIL LUND: FAITH, FOCUS, AND THE ROAD TO THE 2028 OLYMPIC MARATHON
22.7K -
37:15
Stephen Gardner
5 hours ago🔥Trump ERUPTS After Obama’s Charlie Kirk Comments!
35.3K67 -
13:40:35
Total Horse Channel
16 hours ago2025 WDAA Western Dressage World Championship Show | Day Two | Arena One
26.1K