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;
}
};
-
3:58:54
SavageJayGatsby
9 hours ago🎃 Friend Friday – Halloween Edition! 👻🕷️
36.3K3 -
16:16
Robbi On The Record
12 days ago $20.57 earnedThe Dark History of Halloween | What You Should Know
62.2K53 -
58:18
Flyover Conservatives
1 day agoThe Truth About Halloween that You DIDN’T Know - Holiday Special - Historian Bill Federer | FOC SPECIAL Show
51K7 -
3:10:46
Ellie_roe
8 hours agoEllie and Errys Halloween Spooktacular || Random Horror Games
24.2K1 -
50:27
Sarah Westall
9 hours agoBig Banks Caught Rigging Market, IMF tells World to “Buckle Up” w/ Andy Schectman
43.6K19 -
13:54
Degenerate Jay
16 hours ago $1.15 earned5 Best Superhero Movies To Watch On Halloween
22.9K5 -
59:03
NAG Podcast
9 hours agoSarah Fields: BOLDTALK W/Angela Belcamino
39.4K9 -
1:21:41
Glenn Greenwald
12 hours agoGlenn Takes Your Questions: On the Argentina Bailout, Money in Politics, and More; Plus: Journalist Jasper Nathaniel on Brutality and Settler Attacks in the West Bank | SYSTEM UPDATE #541
92K47 -
3:10:08
Barry Cunningham
9 hours agoPRESIDENT TRUMP TO USE NUCLEAR OPTION? FOOD STAMPS END! | SHUTDOWN DAY 31
55.6K45 -
1:06:56
BonginoReport
17 hours agoThe Battle Between Good & Evil w/ Demonologist Rick Hansen - Hayley Caronia (Ep.168)
105K39