Split Array Largest Sum
Given an array of non-negative integers and an integer m
, such that you are able to split the array into m
non-empty continuous subarrays. Write an algorithm to minimize the largest sum among these m
subarrays.
Examples
Example 1:
Input: [7,2,5,10,8], m = 2
Output: 18
Try it yourself
Title
Script
Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem
Ipsum
has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.
Contrary to popular belief, Lorem
Ipsum
is not simply random text.
1 >>> a = [1, 2, 3] 2 >>> a[-1] 3 3