Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Here's an interview questions that a colleague asked for a programming position. I thought this was great for watching the interviewee think it through. I'd love to get responses for how the SO community thinks of it.

Given a list of real numbers of length N, say [a_1, a_2, ..., a_N], what is the complexity of finding the maximum value M for which there exist indices 1 <= i <= j <= N such that

a_i + a_{i+1} + ... + a_j = M?

My apologies if this is a classic CS problem.

share|improve this question
Of what type are the numbers? You say integers in the title, "real numbers" in the question. "Real numbers" sounds like negative and floating point numbers are allowed, "integers" sounds quite like the opposite. – schnaader Mar 16 '11 at 20:02
1  
int vs real makes no difference on the algorithm – kefeizhou Mar 16 '11 at 20:06
6  
This is commonly referred to as 'Maximum Subarray Problem' – Lithium Mar 16 '11 at 20:06
1  
@Lirik: this isn't research-level, so it should be on math.SE if not SO. – Xodarap Mar 16 '11 at 20:09
1  
@Lirik If only there was a wheretoask.stackexchange.com where you could find an answer to questions of that nature. – biziclop Mar 16 '11 at 20:18
show 5 more comments

5 Answers

up vote 6 down vote accepted

The complexity is just O(n) for Kadane's algorithm:

The algorithm keeps track of the tentative maximum subsequence in (maxSum, maxStartIndex, maxEndIndex). It accumulates a partial sum in currentMaxSum and updates the optimal range when this partial sum becomes larger than maxSum.

share|improve this answer

It's O(N):

int sum = 0;
int M = 0;  // This is the output
foreach (int n in input)  {
  sum += n;
  if (sum > M)
      M = sum;

  if (sum < 0)
    sum = 0;
}

The idea is to keep the sum of all integers that have been encountered since last reset. A reset occurs when the sum goes below zero - i.e. there are too many negative numbers in the current interval to make it possibly the best one.

share|improve this answer
your algorithm does not work for an input where the last element (proceeded by a negative number "more" negative than the highest number is positive), such as [-12, -14, 2, -4, -61, 39]. – Banang Mar 21 '11 at 14:09
@Banang: Thanks, edited the answer, hopefully it's right in all cases now. – Karel Petranek Mar 21 '11 at 14:41
you need to move the line sum += n up about 5 lines (it needs to be the first thing that happens in the loop), otherwise it won't work. (I'm assuming you'll fix this, so I'll remove my down-vote. Thanks for fixing it!). – Banang Mar 21 '11 at 14:53
@Banang: Next time I'll compile & run even those simple programs :-) Thanks again. – Karel Petranek Mar 21 '11 at 16:22

This is a classical, well known, problem that is an excellent eye-opener in any algorithm course. It is hard to find a better/simpler starter. You can find an n*3-, n*2-, nlogn- and even the simple n-algorithm.

I found the problem discussed/solved in John Bentley´s "Programming Pearls" from 1986 - and did use it for years as a starter in our Algorithm Course at NTNU/Trondheim. Some 20 years ago I first used it in an examination for about 250 students, where just 1 student did discover all the 4 solutions, see above. He, Bjørn Olstad, became the "youngest professor ever" at NTNU in Trondheim, and has still this status beside heading the MSFT search division in Oslo. Bjørn also took the challenge to find good practical applications of the algorithm. Do you see some?

  • Arne Halaas
share|improve this answer

Try this code .. it would work fine for at least one +ve number in the array.. O(n) just one for loop used..

public static void main(String[] args) {
    int length ;
    int a[]={-12, 14, 0, -4, 61, -39};  
    length=a.length;

    int absoluteMax=0, localMax=0, startIndex=0, lastIndex=0, tempStartIndex=0;
    for (int index=0;index<length;index++) {
        localMax= localMax + a[index];
        if(localMax < 0){ localMax=0; tempStartIndex = index + 1;}
        if(absoluteMax < localMax) {
            absoluteMax = localMax; 
            lastIndex =index; 
            startIndex=tempStartIndex;
        }
    }

    System.out.println("startIndex  "+startIndex+"  lastIndex "+ lastIndex);    
    while (startIndex <= lastIndex) {
        System.out.print(" "+a[startIndex++]);
    }
}
share|improve this answer

This might be wrong because it's suspiciously simple.

  1. Start summing all the elements from 0 to n, and determine the index where the rolling sum was the highest. This will be the upper boundary of your interval.
  2. Do the same backwards to get your lower boundary. (It's enough if you start from the upper boundary.)

This looks like O(n).

share|improve this answer
OP is looking for the max value M, not the indices (which can still be computed using Kadane's algorithm instead of going back and forth). – ash Mar 16 '11 at 20:25
@Jasie The second step also trivially gives you the maximum value. Unless my algorithm is completely wrong of course. – biziclop Mar 16 '11 at 21:05
True, since the 2-step algorithm you describe is the same as Kadane's, forwards and backwards. – ash Mar 16 '11 at 22:03
@Jasie At least it definitely works then. :) – biziclop Mar 16 '11 at 22:32

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.