-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathSplitArrayLargestSum.java
43 lines (41 loc) · 1000 Bytes
/
SplitArrayLargestSum.java
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
43
/*https://leetcode.com/problems/split-array-largest-sum/*/
class Solution {
int[] nums;
int m;
public int splitArray(int[] nums, int m) {
this.nums = nums;
this.m = m;
int low = nums[0], high = 0, mid, result = -1;
for (int val : nums)
{
low = Math.max(low,val);
high += val;
}
while (low <= high)
{
mid = low+(high-low)/2;
if (isPossible(mid))
{
result = mid;
high = mid-1;
}
else low = mid+1;
}
return result;
}
private boolean isPossible(int limit)
{
int curr = 0, count = 1;
for (int i = 0; i < nums.length; ++i)
{
curr += nums[i];
if (curr > limit)
{
++count;
if (count > m) return false;
curr = nums[i];
}
}
return true;
}
}