class Solution {
public:
int minPairSum(vector<int>& nums) {
}
};
1877. 数组中最大数对和的最小值
一个数对 (a,b)
的 数对和 等于 a + b
。最大数对和 是一个数对数组中最大的 数对和 。
(1,5)
,(2,3)
和 (4,4)
,最大数对和 为 max(1+5, 2+3, 4+4) = max(6, 5, 8) = 8
。给你一个长度为 偶数 n
的数组 nums
,请你将 nums
中的元素分成 n / 2
个数对,使得:
nums
中每个元素 恰好 在 一个 数对中,且请你在最优数对划分的方案下,返回最小的 最大数对和 。
示例 1:
输入:nums = [3,5,2,3] 输出:7 解释:数组中的元素可以分为数对 (3,3) 和 (5,2) 。 最大数对和为 max(3+3, 5+2) = max(6, 7) = 7 。
示例 2:
输入:nums = [3,5,4,2,4,6] 输出:8 解释:数组中的元素可以分为数对 (3,5),(4,4) 和 (6,2) 。 最大数对和为 max(3+5, 4+4, 6+2) = max(8, 8, 8) = 8 。
提示:
n == nums.length
2 <= n <= 105
n
是 偶数 。1 <= nums[i] <= 105
原站题解
golang 解法, 执行用时: 284 ms, 内存消耗: 9.3 MB, 提交时间: 2021-07-20 17:52:42
func minPairSum(nums []int) int { // 充分平均分配吧 sort.Ints(nums) k := len(nums) ans := 0 for i := 0; i < k/2; i++ { ans = max(ans, nums[i] + nums[k-1-i]) } return ans } func max(x, y int) int { if x > y { return x } return y }
golang 解法, 执行用时: 340 ms, 内存消耗: 9.1 MB, 提交时间: 2021-06-29 15:56:45
func minPairSum(nums []int) int { sort.Ints(nums) n := len(nums) ans := 0 for i := 0; i < n/2; i++ { if nums[i] + nums[n-i-1] > ans { ans = nums[i] + nums[n-i-1] } } return ans }