Last Updated: 26 Nov, 2020

Maximum Sum Of (i * ARR[i]) Among All Possible Rotations Of An Array

Moderate
Asked in companies
OYOAppleMakeMyTrip

Problem statement

You are given an array 'ARR' consisting of 'N' elements, and you need to find the maximum value of sum(i * ARR[i]) among all possible rotations of the given array. The rotations allowed are left rotation, and right rotation, and these rotations can be performed any number of times on the array.

Sum(i * ARR[i]) denotes the summation of all values (i * ARR[i]) for every 'i', where 0 <= 'i' <= 'N' - 1.

Note :

1. The array follows 0-based indexing.
2. In one rotation operation, all elements of the array will shift either towards the left or right by one index.
3. The element at the extreme left index (i.e. 0th index) will shift to the 'N-1'th index after applying one left rotation on the array and the rest all the elements will shift to the 'i-1'th index.
4. The element at the extreme right index (i.e. 'N-1'th index) will shift to the 0th index after applying one right rotation on the array and the rest of the elements will shift to the 'i' + 1'th index.
Input Format :
The first line of the input contains an integer 'T' denoting the number of test cases.

The first line of each test case contains the integer 'N', denoting the size of the array.

The second line of each test case contains 'N' space-separated integers denoting the array elements.
Output Format :
The only line of output of each test case should contain an integer, denoting the maximum value of sum(i * ARR[i]).
Note :
You don't need to print anything. It has already been taken care of. Just implement the given function.
Constraints :
1 <= T <= 10^2
1 <= N <= 10^4
0 <= ARR[i] <= 10^6

Time Limit : 1sec

Approaches

01 Approach

It’s important to note that, there are only a finite number of unique arrangments of the array possible after applying rotation operations on the array any number of times. So what we can do is find the sum(i*ARR[i]) for all possible rotations and return the maximum among them.

 

Here is the algorithm :

 

  1. Create a variable (say, ‘maxSum’) and initialise it to 0.
  2. Run a loop from 0 to 'N - 1' (say, iterator ‘i’), as these are all possible starting indices of the array in some rotation or the other.
  3. For each starting index, calculate the ending index of the array possible as ‘endIndex’ =  (i + N - 1) % N (because the size of the array is ‘N’) and store the current array sum in variable (say, ‘currentSum’)
  4. Iterate from starting index to next 'N - 1'(valid) indices by calculating the next index as (i + 1) % N till you reach end index and update the ‘currentSum’ by adding 'i * ARR[i]'.
  5. After reaching the end index update ‘maxSum’ to maximum of 'maxSum' and ‘currentSum’.
  6. Finally, return the maximum sum after all iterations of i.

02 Approach

It’s important to note that, there are limited arrays possible after applying rotation operations on the array any number of times. Also notice that 1 left rotation = ‘N - 1' right rotations and vice versa, thus we can choose a single type of rotation and fetch all possible arrangments of the given array.

 

Here is the algorithm :

 

  1. Create a variable (say, ‘originalArraySum’) and initialise it to 0.
  2. In this method, we will try to find a relation between sum(i*ARR[i]) values of two consecutive rotations of an array. These can be either two consecutive left rotations or two consecutive right rotations.
  3. Let’s assume that, given array ‘ARR’ is {ARR[0], ARR[1], …… ARR[N - 1]}.
  4. We will denote sum after i rotations on the original array as SR(i).
  5. Then SR(0) = 0*ARR[0] + 1*ARR[1] + ….. (N - 1)*ARR[N - 1].
  6. Let’s assume we choose to apply left rotations on array only.
  7. Then, SR(1) = 0*ARR[1] + 1*ARR[2] + ……. (N - 1)*ARR[0].
  8. Then the value of SR(1) - SR(0) will be ARR[2] + ARR[3] + … + (N - 1)*ARR[0] - ARR[1] - ARR[2] - …. - (N - 1)*ARR[N - 1].
  9. Also, note that SR(1) = SR(0) - ‘originalArraySum’ + N * Arr[0].
  10. Thus, SR(1) - SR(0) can be rewritten as, N*ARR[0] - ‘originalArraySum’.
  11. So, for any number of rotations j from 1 to 'N - 1'  in the given ARR[],
  12. SR(j) can be calculated as:
  13. SR(j) = SR(j - 1) - ‘originalArraySum’ + N*ARR[j - 1].
  14. Thus we can find the sum(i*ARR[i]) for the original array, and can update this sum for all possible arrangments in O(N) time and find the maximum.