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;
}
};
-
LIVE
Lofi Girl
3 years agolofi hip hop radio 📚 - beats to relax/study to
106 watching -
1:45:06
Badlands Media
1 day agoDevolution Power Hour Ep. 399: No Kings, Antifa’s Collapse & Trump’s Year of Peace
276K86 -
2:56:00
Laura Loomer
10 hours agoEP150: New Yorkers Brace For Islamic Takeover After Mayoral Election Debate
81.5K98 -
1:35:37
Man in America
14 hours agoThe Forbidden Medicine of Light: Why is Big Pharma HIDING This From Us?
61.6K26 -
2:35:13
BlackDiamondGunsandGear
8 hours agoAFTER HOURS ARMORY / BUILDING GUNS ARE ILLEGAL? / Marine Gun Builder RETURNS!!
22.3K3 -
2:05:19
Damysus Gaming
8 hours agoARC Raiders - SERVER SLAM TIME!!!! LFG!!!
36.4K2 -
1:04:10
The Connect: With Johnny Mitchell
11 hours ago $6.23 earnedTucker Carlson's INSANE Take On Civil War In America, Calls For Fascism
26.3K56 -
2:35:14
DLDAfterDark
9 hours ago $11.22 earnedThe Return of Marine Gun Builder? MGB, DLD, BDG&G After Hours Armory
31K3 -
28:39
Afshin Rattansi's Going Underground
1 day agoDonald Trump’s Gaza Peace Plan: A Pivotal Moment or Farce? (Palestinian Deputy Foreign Minister)
34.4K7 -
3:31:29
SavageJayGatsby
10 hours ago🔥 Spicy Saturday – Let's Play: Prison Life 2🔥
56.1K2