-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayPartition.php
More file actions
42 lines (40 loc) · 1.14 KB
/
Copy pathArrayPartition.php
File metadata and controls
42 lines (40 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?php
namespace App;
/**
* Array Partition
*
* Given an integer array nums of 2n integers, group these integers into n pairs (a_1, b_1), (a_2, b_2), ..., (a_n, b_n)
* such that the sum of min(a_i, b_i) for all i is maximized. Return the maximized sum.
*
* Example 1:
* Input: nums = [1,4,3,2]
* Output: 4
* Explanation: All possible pairings (ignoring the ordering of elements) are:
* 1. (1, 4), (2, 3) -> min(1, 4) + min(2, 3) = 1 + 2 = 3
* 2. (1, 3), (2, 4) -> min(1, 3) + min(2, 4) = 1 + 2 = 3
* 3. (1, 2), (3, 4) -> min(1, 2) + min(3, 4) = 1 + 3 = 4
* So the maximum possible sum is 4.
*
* Example 2:
* Input: nums = [6,2,6,5,1,2]
* Output: 9
* Explanation: The optimal pairing is (2, 1), (2, 5), (6, 6). min(2, 1) + min(2, 5) + min(6, 6) = 1 + 2 + 6 = 9.
*
* https://leetcode.com/problems/array-partition
*/
class ArrayPartition
{
/**
* @param array<array-key, int> $nums
* @return int
*/
public function arrayPairSum(array $nums): int
{
sort($nums);
$sum = 0;
for ($i = 0, $iMax = count($nums); $i < $iMax; $i += 2) {
$sum += $nums[$i];
}
return $sum;
}
}