-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMaximize_sum-[arr[i]*i]_of_an_Array.cpp
44 lines (35 loc) · 1.42 KB
/
Maximize_sum-[arr[i]*i]_of_an_Array.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
/*
Problem Statement:
-----------------
Given an array A of N integers. Your task is to write a program to find the maximum value of ∑arr[i]*i, where i = 0, 1, 2,…., n – 1.
You are allowed to rearrange the elements of the array. Note: Since output could be large, hence module 109+7 and then print answer.
Example 1:
----------
Input : Arr[] = {5, 3, 2, 4, 1}
Output : 40
Explanation: If we arrange the array as 1 2 3 4 5 then we can see that the minimum index will multiply with minimum number and maximum index will
multiply with maximum number. So 1*0+2*1+3*2+4*3+5*4=0+2+6+12+20 = 40 mod(109+7) = 40
Example 2:
---------
Input : Arr[] = {1, 2, 3}
Output : 8
Your Task: This is a function problem. The input is already taken care of by the driver code. You only need to complete the function Maximize() that takes an array (arr),
sizeOfArray (n), and return the maximum value of an array. The driver code takes care of the printing.
Expected Time Complexity: O(nlog(n)).
Expected Auxiliary Space: O(1).
*/
// Link --> https://practice.geeksforgeeks.org/problems/maximize-arrii-of-an-array0026/1#
// Code:
class Solution
{
public:
int Maximize(int a[] , int n)
{
const unsigned int mod = 1000000007;
unsigned long long int ans = 0;
sort(a , a+n);
for(int i=0 ; i<n ; i++)
ans = (ans + ((unsigned long long)a[i]*i)%mod )%mod;
return ans;
}
};