2461. Maximum Sum of Distinct Subarrays With Length K
Medium
You are given an integer array nums
and an integer k
. Find the maximum subarray sum of all the subarrays of nums
that meet the following conditions:
The length of the subarray is
k
, andAll the elements of the subarray are distinct.
Return the maximum subarray sum of all the subarrays that meet the conditions. If no subarray meets the conditions, return 0
.
A subarray is a contiguous non-empty sequence of elements within an array.
Example 1:
Example 2:
Constraints:
1 <= k <= nums.length <= 105
1 <= nums[i] <= 105
解題
Last updated