Maximum subvector sum
The maximum subvector sum problem is that of finding a segment of a vector (array of numbers)[1], possibly empty, with maximum sum. If all elements of the array are nonnegative, then the problem may be trivially solved by taking the entire vector; if all elements are negative, then the problem is again trivially solved by taking the empty segment (whose sum is conventionally defined to be zero). The problem requires more thought, however, when the vector contains a mixture of positive and negative numbers.
This problem originated in the domain of image processing;[2] applications have also been found in data mining.[3] In algorithmic programming competitions, Kadane's linear time algorithm for this problem is often useful as a building block within a more complex algorithm for processing a multidimensional array.
Contents
[hide]One-dimensional problem
Bentley[2] describes four algorithms for this problem, of running time ,
,
, and
. We discuss only the latter in this article, which is known as Kadane's algorithm after its discoverer.
Kadane's algorithm is a classic example of dynamic programming. It works by scanning the vector from left to right and computing the maximum-sum subvector ending at each of the vector's entries; denote the best sum ending at entry by
. Also, for convenience, set
for the empty subvector. The maximum subvector sum for the entire array
is then, of course,
.
for
may then be computed as follows:
This formula is based on the following optimal substructure: The maximum-sum subvector ending at position consists of either only the element
itself, or that element plus one or more elements
(that is, ending at the previous position
). But the sum obtained in the latter case is simply
plus the sum of the subvector ending at
, so we want to make the latter as great as possible, requiring us to choose the maximum-sum subvector ending at
. This accounts for the
term. Of course, if
turned out to be negative, then there is no point in including any terms before
at all. This is why we must take the greater of
and
.
Implementation (C++)
int max_subvector_sum(vector<int> V) { int res = 0, cur = 0; for (int i = 0; i < V.size(); i++) res = max(res, cur = V[i] + max(0, cur)); return res; }
Higher dimensions
The obvious generalization of the problem is as follows: given a -dimensional array of dimensions
, find indices
such that the sum
is maximized (or return 0 if all entries are negative). If we imagine a two-dimensional array as a matrix, then the problem is to pick some axis-aligned rectangle within the matrix with maximum sum.
There is a simple algorithm for this problem that runs in time . In the case with all dimensions equal, this reduces to
, or
in the two-dimensional case. The algorithm works by considering all possible sets of bounds
; these number
. For each such set of bounds, we compute
. (We do this by building up the sum one index at a time using precomputed sums of boxes of lower dimension.) Then we find the one-dimensional max subvector sum in
, which takes linear time. The total time is then as stated.
This series of algorithms is not asymptotically optimal; for example, the case can be solved in
time by a result due to Takaoka.[3] In practice, however, the gains are not large.
Problems
Notes and references
- Jump up ↑ In computer science, vector is often used to mean array of real numbers; sometimes it is simply synonymous with array. Here, array is used in contradistinction with linked list, which does not support efficient random access. This meaning is related to but different from the meaning of the word in mathematics and physics.
- ↑ Jump up to: 2.0 2.1 Bentley, Jon (1984), "Programming pearls: algorithm design techniques", Communications of the ACM 27 (9): 865–873, doi:10.1145/358234.381162.
- ↑ Jump up to: 3.0 3.1 Takaoka, T. (2002), "Efficient algorithms for the maximum subarray problem by distance matrix multiplication", Electronic Notes in Theoretical Computer Science 61.