[Swift]LeetCode561. 数组拆分 I | Array Partition I

Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), ..., (an, bn) which makes sum of min(ai, bi) for all i from 1 to n as large as possible.

Example 1:

Input: [1,4,3,2]

Output: 4
Explanation: n is 2, and the maximum sum of pairs is 4 = min(1, 2) + min(3, 4).

Note:

  1. n is a positive integer, which is in the range of [1, 10000].
  2. All the integers in the array will be in the range of [-10000, 10000].


给定长度为 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).

提示:

  1. n 是正整数,范围在 [1, 10000].
  2. 数组中的元素范围在 [-10000, 10000].


128ms

 1 class Solution {
 2     func arrayPairSum(_ nums: [Int]) -> Int {
 3         //升序排序,使每一对的两个数字尽可能接近
 4         var arr:[Int] = nums.sorted(by: <)
 5         var sum:Int = 0
 6         //奇数位置(偶数索引)求和
 7         for i in stride(from: 0,to: arr.count,by: 2)
 8         {
 9             sum += arr[i]
10         }
11         return sum
12     }
13 }


192ms

 1 class Solution {
 2     func arrayPairSum(_ nums: [Int]) -> Int {
 3         var tempSum = 0
 4         let sortedArray = nums.sorted(by: <)
 5         var tempPair = [Int]()
 6         for number in sortedArray {
 7             if tempPair.count < 1 {
 8                 tempPair.append(number)
 9             } else {
10                 if let min = tempPair.min() {
11                     tempSum += min
12                 }
13                 tempPair.removeAll()
14             }
15         }
16         return tempSum
17     }
18 }


196ms

 1 class Solution {
 2     func arrayPairSum(_ nums: [Int]) -> Int {
 3         var temps = nums
 4         quickSort(numbers: &temps, start: 0, end: temps.count - 1)
 5         var sum = 0
 6         for (index, num) in temps.enumerated() {
 7             if index % 2 == 0 {
 8                 sum = sum + num
 9             }
10         }
11         return sum
12     }
13
14     func quickSort(numbers: inout [Int], start: Int, end: Int) {
15         if start > end {
16             return
17         }
18
19         let pivot = partition(numbers: &numbers, start: start, end: end)
20
21         quickSort(numbers: &numbers, start: start, end: pivot - 1)
22         quickSort(numbers: &numbers, start: pivot + 1, end: end)
23     }
24
25     func partition(numbers: inout [Int], start: Int, end: Int) -> Int {
26         let pivot = numbers[start]
27         var left = start
28         var right = end
29
30         var index = start
31         while left <= right  {
32             while right >= left {
33                 if numbers[right] < pivot {
34                     numbers[index] = numbers[right]
35                     index = right
36                     left = left + 1
37                     break
38                 }
39                 right = right - 1
40             }
41
42             while right >= left {
43                 if numbers[left] > pivot {
44                     numbers[index] = numbers[left]
45                     index = left
46                     right = right - 1
47                     break
48                 }
49                 left = left + 1
50             }
51         }
52
53         numbers[index] = pivot
54         return index
55     }
56 }

原文地址:https://www.cnblogs.com/strengthen/p/9842430.html

时间: 2024-10-08 10:41:51

[Swift]LeetCode561. 数组拆分 I | Array Partition I的相关文章

LeetCode561 数组拆分 I

给定长度为 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

【LeetCode】数组-6(561)-Array Partition I(比较抽象的题目)

题目描述:两句话发人深思啊.... Given an array of 2n integers, your task is to group these integers into n pairs of integer, say (a1, b1), (a2, b2), ..., (an, bn) which makes sum of min(ai, bi) for all i from 1 to n as large as possible. 感觉题目的大致意思就是把数组分成很多个二元数组,对它

Leetcode#561. Array Partition I(数组拆分 I)

题目描述 给定长度为 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]. 思路 分组之后min(ai, bi)的和最大

数组拆分

温习并学习下算法,记录设计地点滴. 数组拆分是将一个无序数组,拆分成两个子数组,子数组A地元素全部比数组元素小,子数组B地元素全部比数组元素大. 代码如下: package test; import java.util.Arrays; public class PartitionPolicy { public void part(int[] array, int key) { // swap int temp = array[key]; array[key] = array[array.leng

Swift学习----数组

数组(有序数据的集) *格式 : [] / [Int]() / Array<Int>() * let 不可变数组 * var 可变数组 注意: * 不需要改变集合的时候创建不可变集合是很好的实践.如此 Swift 编译器可以优化我们创建的集合. // 声明数组 let arr1: Array<Int> // 推荐 let arr2: [Int] arr2 = [10, 20] // 先定义再初始化 //arr2 = [30, 40] var arr3: [Double] arr3

Swift 之数组与字典

http://www.cocoachina.com/swift/20151230/14802.html 说到数组和字典,只要是编过程的小伙伴并不陌生.在Swift中的数组与字典也有着一些让人眼前一亮的特性,今天的博客就来窥探一下Swift中的Array和Dictionary.还是沿袭之前的风格,在介绍Swift中的数组时,我们会对比一下ObjC中的数组和字典,因为ObjC也是iOS开发的主要语言不是.无论是简单还是复杂的程序,数组和字典的用处还是比较多的,这两者虽然是Swift的基础内容,但是也

窥探Swift之数组安全索引与数组切片

在Swift中的数组和字典中下标是非常常见的,数组可以通过索引下标进行元素的查询,字典可以通过键下标来获取相应的值.在使用数组时,一个常见的致命错误就是数组越界.如果在你的应用程序中数组越界了,那么对不起,如果由着程序的性子的话是会崩溃的.为了防止崩溃呢,我们会对集合做一些安全的处理.比如对数组进行扩展,从而对数组的索引进行安全检查,保证数组的index在正常范围内.在Objective-C中也是经常对数组,字典等做一些处理操作. 今天的博客的主要内容是先对Objective-C中常用集合的安全

Swift之数组使用

Swift提供两种类型的集合,一种是数组Array,另外一种是字典Dictionary,他们之间的共同点是都是用来存储相同类型的数据,不同点是数组中存放的数据是有序的,二字典中存放的数据时无序的.字典还具有两外一个特性,就是字典中所存储的数据是键值对(key - value)形式存在. 这里主要写一下Swift中数组类型使用 一.数组类型定义 想定义其他变量或者常量一样,如果我们在Swift中定义一个数据,也可以通过类型标注指定他的类型.在Swift中,数组类型有两种写法: // 一是完整版:

【LEETCODE】39、第561题 Array Partition I

package y2019.Algorithm.array; /** * @ProjectName: cutter-point * @Package: y2019.Algorithm.array * @ClassName: ArrayPairSum * @Author: xiaof * @Description: 561. Array Partition I * Given an array of 2n integers, your task is to group these integers