Class Solution
- java.lang.Object
-
- g0401_0500.s0410_split_array_largest_sum.Solution
-
public class Solution extends Object
410 - Split Array Largest Sum.Hard
Given an array
numswhich consists of non-negative integers and an integerm, you can split the array intomnon-empty continuous subarrays.Write an algorithm to minimize the largest sum among these
msubarrays.Example 1:
Input: nums = [7,2,5,10,8], m = 2
Output: 18
Explanation:
There are four ways to split nums into two subarrays. The best way is to split it into [7,2,5] and [10,8], where the largest sum among the two subarrays is only 18.Example 2:
Input: nums = [1,2,3,4,5], m = 2
Output: 9
Example 3:
Input: nums = [1,4,4], m = 3
Output: 4
Constraints:
1 <= nums.length <= 10000 <= nums[i] <= 1061 <= m <= min(50, nums.length)
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intsplitArray(int[] nums, int m)
-