Maximum subarray problem
In computer science, the maximum sum subarray problem, also known as the maximum segment sum problem, is the task of finding a contiguous subarray with the largest sum, within a given one-dimensional array A of numbers. It can be solved in time and space.
Formally, the task is to find indices and with, such that the sum
is as large as possible. Each number in the input array A could be positive, negative, or zero.
For example, for the array of values, the contiguous subarray with the largest sum is, with sum 6.
Some properties of this problem are:
- If the array contains all non-negative numbers, then the problem is trivial; a maximum subarray is the entire array.
- If the array contains all non-positive numbers, then a solution is any subarray of size 1 containing the maximal value of the array.
- Several different sub-arrays may have the same maximum sum.
History
The maximum subarray problem was proposed by Ulf Grenander in 1977 as a simplified model for maximum likelihood estimation of patterns in digitized images.Grenander was looking to find a rectangular subarray with maximum sum, in a two-dimensional array of real numbers. A brute-force algorithm for the two-dimensional problem runs in O time; because this was prohibitively slow, Grenander proposed the one-dimensional problem to gain insight into its structure. Grenander derived an algorithm that solves the one-dimensional problem in O time using prefix sums, improving the brute force running time of O. When Michael Shamos heard about the problem, he overnight devised an O divide-and-conquer algorithm for it.
Soon after, Shamos described the one-dimensional problem and its history at a Carnegie Mellon University seminar attended by Jay Kadane, who designed within a minute an O-time algorithm, which is as fast as possible. In 1982, David Gries obtained the same O-time algorithm by applying Dijkstra's "standard strategy"; in 1989, Richard Bird derived it by purely algebraic manipulation of the brute-force algorithm using the Bird–Meertens formalism.
Grenander's two-dimensional generalization can be solved in O time either by using Kadane's algorithm as a subroutine, or through a divide-and-conquer approach. Slightly faster algorithms based on distance matrix multiplication have been proposed by and by. There is some evidence that no significantly faster algorithm exists; an algorithm that solves the two-dimensional maximum subarray problem in O time, for any ε>0, would imply a similarly fast algorithm for the all-pairs shortest paths problem.
Applications
Maximum subarray problems arise in many fields, such as genomic sequence analysis and computer vision.Genomic sequence analysis employs maximum subarray algorithms to identify important biological segments of protein sequences that have unusual properties, by assigning scores to points within the sequence that are positive when a motif to be recognized is present, and negative when it is not, and then seeking the maximum subarray among these scores. These problems include conserved segments, GC-rich regions, tandem repeats, low-complexity filter, DNA binding domains, and regions of high charge.
In computer vision, bitmap images generally consist only of positive values, for which the maximum subarray problem is trivial: the result is always the whole array. However, after subtracting a threshold value from each pixel, so that above-average pixels will be positive and below-average pixels will be negative, the maximum subarray problem can be applied to the modified image to detect bright areas within it.
Kadane's algorithm
No empty subarrays admitted
Kadane's algorithm scans the given array from left to right.In the th step, it computes the subarray with the largest sum ending at ; this sum is maintained in variable
current_sum.Moreover, it computes the subarray with the largest sum anywhere in, maintained in variable
best_sum,and easily obtained as the maximum of all values of
current_sum seen so far, cf. line 7 of the algorithm.As a loop invariant, in the th step, the old value of
current_sum holds the maximum over all of the sum.Therefore,
current_sumis the maximum over all of the sum. To extend the latter maximum to also cover the case, it is sufficient to also consider the singleton subarray. This is done in line 6 by assigning
current_sum as the new value of current_sum, which after that holds the maximum over all of the sum.Thus, the problem can be solved with the following code, expressed in Python.
def max_subarray:
"""Find the largest sum of any contiguous subarray."""
best_sum = float
current_sum = 0
for x in numbers:
current_sum = max
best_sum = max
return best_sum
If the input contains no positive element, the returned value is that of the largest element, or negative infinity if the input was empty. For correctness, an exception should be raised when the input array is empty, since an empty array has no maximum nonempty subarray. If the array is nonempty, its first element could be used in place of negative infinity, if needed to avoid mixing numeric and non-numeric values.
The algorithm can be adapted to the case which allows empty subarrays or to keep track of the starting and ending indices of the maximum subarray.
This algorithm calculates the maximum subarray ending at each position from the maximum subarray ending at the previous position, so it can be viewed as a case of dynamic programming.
Empty subarrays admitted
Kadane's algorithm, as originally published, is for solving the problem variant which allows empty subarrays.In such a variant, the answer is 0 when the input contains no positive elements.
The variant is obtained with two changes in code: in line 3,
best_sum should be initialized to 0 to account for the empty subarray best_sum = 0;
and line 6 in the for loop
current_sum should be updated to max.current_sum = max
As a loop invariant, in the th step, the old value of
current_sum holds the maximum over all of the sum.Therefore,
current_sumis the maximum over all of the sum. To extend the latter maximum to also cover the case, it is sufficient to also consider the empty subarray. This is done in line 6 by assigning
current_sum as the new value of current_sum, which after that holds the maximum over all of the sum. Machine-verified C / Frama-C code of both variants can be found here.Computing the best subarray's position
The algorithm can be modified to keep track of the starting and ending indices of the maximum subarray as well.Because of the way this algorithm uses optimal substructures this algorithm can be viewed as a simple/trivial example of dynamic programming.
Complexity
The runtime complexity of Kadane's algorithm is and its space complexity is.Generalizations
Similar problems may be posed for higher-dimensional arrays, but their solutions are more complicated; see, e.g.,. showed how to find the k largest subarray sums in a one-dimensional array, in the optimal time bound.The Maximum sum k-disjoint subarrays can also be computed in the optimal time bound