You are given an array of positive integers
Return the maximum score you can get by erasing exactly one subarray.
An array
Example 1:
Input: nums = [4,2,4,5,6] Output: 17 Explanation: The optimal subarray here is [2,4,5,6].
Example 2:
Input: nums = [5,2,1,2,5,2,1,2,5] Output: 8 Explanation: The optimal subarray here is [5,2,1] or [1,2,5].
Constraints:
1 <= nums.length <= 105 1 <= nums[i] <= 104
Solution3. Longest substring without repeating characters 的變形
這次不是要求最長的 subarray,而是總合最大的 subarray
一樣用 sliding window 來解題
差別在於這次要算總合,所以 left 不是直接跳到重複數字的位置
而是慢慢移過去,並把經過的數字從總合中減掉
所以可以改用 set 而不用 map,因為不用知道 index 的值
kotlin
沒有留言:
張貼留言