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

Given two arrays a and b of size n, a is always sorted in increasing order. Both arrays a and b contain positive values. My code calculates a variable called 'total' (initialized to zero) using the below piece of code:

    for(int i=0;i<n;i++)
        for(int j=i+1;j<n;j++)
                total+=max(b[i],b[j])*(a[j]-a[i]);

Presently, this is of O(n^2) complexity. Is there any way to optimize this code to run in O(nlogn) by using appropriate data structures and computing the result?

share|improve this question
1  
can you tell a little more about the context.. also i think you want your "i" loop to end at i<(n-1)?? – Fraz Jan 8 '12 at 21:06
Fraz, this does not change anything, as for i=n-1 nothing happens. I would also like to hear about motivation. – sdcvvc Jan 8 '12 at 21:08
@sdcvvc When i == n-1, then j < n can never happen, so might as well skip that case in the outer loop. – Ted Hopp Jan 8 '12 at 21:12
5  
This is a current CodeSprint question (programming contest)... codesprint.interviewstreet.com – tskuzzy Jan 8 '12 at 21:33
1  
casperOne: I'm not going to dispute this rule (although tskuzzy's comment is a really solid reason), but did you delete my comment above? I don't think it was offensive in any way, and if someone disapproved of it, he could reply to it. – sdcvvc Jan 8 '12 at 23:29
show 4 more comments

closed as too localized by templatetypedef, sdcvvc, Till, Ishtar, ChrisF Jan 9 '12 at 10:39

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

If you're talking about a one-time calculation, I don't see how. Regardless of what's in b, your total includes O(n2) factors a[j] - a[i].

If the a array is fixed and you want to do the calculation repeatedly for multiple b arrays, then I'd suggest forming the (O(n2)) matrix of values a[j] - a[i]. There's perhaps a way to use that to reduce the calculation to O(n). (I haven't thought too much about this; it still may not work.)

share|improve this answer
2  
-1 I disagree with this answer. Look at the Fourier transform, for example, which is a sum of O(n^2) terms, but can be computed in O(n log n) through a variety of clever algorithms. Moreover, the second half of your answer doesn't give a constructive approach for coming up with an O(n) algorithm or even explaining where one would come from. – templatetypedef Jan 8 '12 at 21:32
@templatetypedef FFT works by taking advantage of a very special structure of DFT, where it can use roots of unity to simplify the problem. There is no such structure in this problem. For each (i,j) pair, max(b[i], b[j]) and a[j] - a[i] are each evaluated exactly once. – Ted Hopp Jan 8 '12 at 21:49
1  
I don't think that you can conclude that there is no special structure to this problem. As harism's answer points out, you can eliminate the cost of computing the max each time, and I'd bet that using tricks with running totals you could compute the difference efficiently. That said, since it looks like this question is taken straight from a programming contest, I'm not going to comment much more on this problem, since I don't want to assist the OP unfairly in a competition. – templatetypedef Jan 8 '12 at 21:50

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