3974. Maximum Total Sum of K Selected Elements
Description
You are given an integer array nums and two integers k and mul.
Select exactly k elements from nums. Process these elements one by one in any order you choose.
For each selected element, independently choose one of the following:
- Add the element's value to the total sum, or
- Multiply the element by the current value of
muland add the result to the total sum.
After processing each selected element, mul decreases by 1, regardless of which option was chosen. The current value of mul may become 0 or negative.
Return an integer denoting the maximum possible total sum.
Β
Example 1:
Input: nums = [6,1,2,9], k = 3, mul = 2
Output: 26
Explanation:
One optimal way:
- One optimal selection is
nums[3] = 9,nums[0] = 6, andnums[2] = 2. - Process
nums[3] = 9first: choose multiplication, so it contributes9 * 2 = 18. Now,mulbecomes 1. - Process
nums[0] = 6next: choose multiplication, so it contributes6 * 1 = 6. Now,mulbecomes 0. - Process
nums[2] = 2last: choose addition, so it contributes 2. - The total sum is
18 + 6 + 2 = 26.
Example 2:
Input: nums = [3,7,5,2], k = 2, mul = 4
Output: 43
Explanation:
One optimal way:
- One optimal selection is
nums[1] = 7andnums[2] = 5. - Process
nums[1] = 7first: choose multiplication, so it contributes7 * 4 = 28. Now,mulbecomes 3. - Process
nums[2] = 5next: choose multiplication, so it contributes5 * 3 = 15. - The total sum is
28 + 15 = 43.
Example 3:
Input: nums = [4,4], k = 1, mul = 1
Output: 4
Explanation:
One optimal way:
- One optimal selection is
nums[0] = 4. - Process
nums[0] = 4: choose multiplication, so it contributes4 * 1 = 4. - The total sum is 4.
Β
Constraints:
1 <= nums.length <= 1051 <= nums[i] <= 1051 <= k <= nums.length1 <= mul <= 105
Solutions
Solution 1: Greedy + Sorting
We can sort the array \(\textit{nums}\) and then select the \(k\) largest elements from the sorted array. For the \(i\)-th element, we can choose to multiply it by \(\max(1, \textit{mul})\) and add it to the total sum, and then \(\textit{mul}\) decreases by \(1\). Finally, we return the total sum.
The time complexity is \(O(n \log n)\), and the space complexity is \(O(\log n)\). Where \(n\) is the length of the array \(\textit{nums}\).
1 2 3 4 5 6 7 8 9 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 | |
1 2 3 4 5 6 7 8 9 10 11 12 13 | |