1770. Maximum Score from Performing Multiplication Operations
https://leetcode.com/problems/maximum-score-from-performing-multiplication-operations
Description
You are given two integer arrays nums and multipliersof size n and m respectively, where n >= m. The arrays are 1-indexed.
You begin with a score of 0. You want to perform exactly m operations. On the ith operation (1-indexed), you will:
Choose one integer
xfrom either the start or the end of the arraynums.Add
multipliers[i] * xto your score.Remove
xfrom the arraynums.
Return the maximum score after performing m operations.
Example 1:
**Input:** nums = [1,2,3], multipliers = [3,2,1]
**Output:** 14
**Explanation:** An optimal solution is as follows:
- Choose from the end, [1,2,**3**], adding 3 * 3 = 9 to the score.
- Choose from the end, [1,**2**], adding 2 * 2 = 4 to the score.
- Choose from the end, [**1**], adding 1 * 1 = 1 to the score.
The total score is 9 + 4 + 1 = 14.Example 2:
Constraints:
n == nums.lengthm == multipliers.length1 <= m <= 103m <= n <= 105-1000 <= nums[i], multipliers[i] <= 1000
ac
Previous1769. Minimum Number of Operations to Move All Balls to Each BoxNext1771. Maximize Palindrome Length From Subsequences
Last updated
Was this helpful?