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?
i == n-1, thenj < ncan never happen, so might as well skip that case in the outer loop. – Ted Hopp Jan 8 '12 at 21:12