Class Solution
-
- All Implemented Interfaces:
public final class Solution2789 - Largest Element in an Array after Merge Operations\.
Medium
You are given a 0-indexed array
numsconsisting of positive integers.You can do the following operation on the array any number of times:
Choose an integer
isuch that0 <= i < nums.length - 1andnums[i] <= nums[i + 1]. Replace the elementnums[i + 1]withnums[i] + nums[i + 1]and delete the elementnums[i]from the array.
Return the value of the largest element that you can possibly obtain in the final array.
Example 1:
Input: nums = 2,3,7,9,3
Output: 21
Explanation:
We can apply the following operations on the array:
Choose i = 0. The resulting array will be nums = <ins>5</ins>,7,9,3.
Choose i = 1. The resulting array will be nums = 5,<ins>16</ins>,3.
Choose i = 0. The resulting array will be nums = <ins>21</ins>,3.
The largest element in the final array is 21. It can be shown that we cannot obtain a larger element.
Example 2:
Input: nums = 5,3,3
Output: 11
Explanation:
We can do the following operations on the array:
Choose i = 1. The resulting array will be nums = 5,<ins>6</ins>.
Choose i = 0. The resulting array will be nums = <ins>11</ins>.
There is only one element in the final array, which is 11.
Constraints:
<code>1 <= nums.length <= 10<sup>5</sup></code>
<code>1 <= numsi<= 10<sup>6</sup></code>
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
Modifier and Type Method Description final LongmaxArrayValue(IntArray nums)-
-
Method Detail
-
maxArrayValue
final Long maxArrayValue(IntArray nums)
-
-
-
-