forked from kamyu104/LeetCode-Solutions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsplit-array-largest-sum.cpp
More file actions
37 lines (34 loc) · 884 Bytes
/
split-array-largest-sum.cpp
File metadata and controls
37 lines (34 loc) · 884 Bytes
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
// Time: O(nlogs), s is the sum of nums
// Space: O(1)
class Solution {
public:
int splitArray(vector<int>& nums, int m) {
long long left = 0, right = 0;
for (const auto& num : nums) {
if (left < num) left = num;
right += num;
}
while (left <= right) {
const auto mid = left + (right - left) / 2;
if (canSplit(nums, m, mid)) {
right = mid - 1;
} else {
left = mid + 1;
}
}
return left;
}
private:
bool canSplit(vector<int>& nums, int m, int sum) {
int cnt = 1;
long long curr_sum = 0;
for (const auto& num : nums) {
curr_sum += num;
if (curr_sum > sum) {
curr_sum = num;
++cnt;
}
}
return cnt <= m;
}
};