数组拆分 I array-partition leetcode python
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组拆分 I array-partition leetcode python相关的知识,希望对你有一定的参考价值。
1. 题目
给定长度为 2n 的数组, 你的任务是将这些数分成 n 对, 例如 (a1, b1), (a2, b2), ..., (an, bn) ,使得从1 到 n 的 min(ai, bi) 总和最大。
示例 1:
输入: [1,4,3,2] 输出: 4 解释: n 等于 2, 最大总和为 4 = min(1, 2) + min(3, 4).
提示:
n 是正整数,范围在 [1, 10000].
数组中的元素范围在 [-10000, 10000].
2. 解答
class Solution(object): def arrayPairSum(self, nums): """ :type nums: List[int] :rtype: int """ listNum = list(nums) listNum.sort() sum = 0 for i in range(0, len(listNum), 2): sum += listNum[i] return sum
原理是这样的,要先排序,这样小的元素和除了它外最小的组合才不会牺牲大的。这样和才会最大。这里用了python list中的sort方法来进行排序。
http://www.codeblogbt.com/archives/39689
以上是关于数组拆分 I array-partition leetcode python的主要内容,如果未能解决你的问题,请参考以下文章