-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathkadane.cpp
39 lines (31 loc) · 1007 Bytes
/
kadane.cpp
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
#include <algorithm>
#include <climits>
#include <cstdint>
#include <numeric>
#include <vector>
int max_subarray_sum(std::vector<int> &arr) {
int max_so_far = INT_MIN, max_ending_here = 0;
for (int i = 0; i < (int)arr.size(); i++) {
max_ending_here = max_ending_here + arr[i];
max_so_far = std::max(max_so_far, max_ending_here);
max_ending_here = std::max(max_ending_here, 0);
}
return max_so_far;
}
int64_t max_sum_with_k(std::vector<int64_t> &container, int64_t k) {
int n = (int)container.size();
std::vector<int> maxsum(n);
int currmax = container[0];
maxsum[0] = container[0];
for (int i = 1; i < n; i++) {
currmax = std::max(container[i], currmax + container[i]);
maxsum[i] = currmax;
}
int sum_k = accumulate(container.begin(), container.begin() + k, int64_t(0));
int result = sum_k;
for (int i = k; i < n; i++) {
sum_k += container[i] - container[i - k];
result = std::max({result, sum_k, sum_k + maxsum[i - k]});
}
return result;
}