給定長度爲 2n 的數組, 你的任務是將這些數分紅 n 對, 例如 (a1, b1), (a2, b2), ..., (an, bn) ,使得從1 到 n 的 min(ai, bi) 總和最大。python
示例 1:數組
輸入: [1,4,3,2] 輸出: 4 解釋: n 等於 2, 最大總和爲 4 = min(1, 2) + min(3, 4).
提示:ide
n 是正整數,範圍在 [1, 10000].code
數組中的元素範圍在 [-10000, 10000].blog
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方法來進行排序。排序