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;
}
};
-
Inverted World Live
2 hours agoA New Bigfoot Sighting and Louisiana Bans Fake Clouds | Ep. 53
41K2 -
2:42:47
TimcastIRL
4 hours agoDemocrat Judge BLOCKS DEPORTATION Of Terrorist's Family, Trump Admin BAITED Democrats | Timcast IRL
155K112 -
LIVE
Alex Zedra
3 hours agoLIVE! Playing Phasmophobia ALONE
668 watching -
3:14:14
Barry Cunningham
5 hours agoLIVE: PRESIDENT TRUMP AND MELANIA TRUMP HOST THE SUMMER SOIREE AND MORE NEWS!
44.3K41 -
LIVE
Joke65
2 hours ago[LIVE] Metroid Prime Remastered | Blind Playthrough | Steam Deck | Part 1 |
90 watching -
LIVE
TheNateVibez
3 hours agoNOT ANOTHER WARZONE STREAMER✌ BOTDANSK🤖ARMYVET🫡
251 watching -
1:33:54
Badlands Media
23 hours agoAltered State S3 Ep. 31: 17-Year Cycles, Trump’s Conviction & The Frequency of Fear
44.6K10 -
LIVE
Eternal_Spartan
2 hours agoLive - Eternal_Spartan Plays Elden Ring and Maybe Halo! | Come Join the Best Chat on Rumble!!!
184 watching -
2:16:48
TheSaltyCracker
4 hours agoGreta Going to Get Blown Up ReeEEeeStream 06-04-25
103K167 -
31:38
Glenn Greenwald
8 hours agoSen. Rand Paul On Opposing Trump's Big Beautiful Bill, Tariffs, His Role in the Senate, Ukraine, Free Speech, and More | SYSTEM UPDATE #464
81.8K77