Limited Time Offer:Up to 20% off Hello Interview Premium
Up to 20% off Hello Interview Premium 🎉
Hello Interview
Learn Code
Introduction
Overview
Container With Most Water
Two Sum (Sorted Array)
3-Sum
Triangle Numbers
Move Zeroes
Sort Colors
Trapping Rain Water
Overview
Maximum Sum of Subarrays of Size K
Max Points You Can Obtain From Cards
Max Sum of Distinct Subarrays Length k
Overview
Longest Substring Without Repeating Characters
Longest Repeating Character Replacement
Overview
Can Attend Meetings
Insert Interval
Non-Overlapping Intervals
Merge Intervals
Employee Free Time
Overview
Valid Parentheses
Decode String
Longest Valid Parentheses
Monotonic Stack
Daily Temperatures
Largest Rectangle in Histogram
Overview
Linked List Cycle
Palindrome Linked List
Remove Nth Node From End of List
Reorder List
Swap Nodes in Pairs
Overview
Apple Harvest (Koko Eating Bananas)
Search in Rotated Sorted Array
Split Array Largest Sum
Kth Smallest Element in a Sorted Matrix
Minimum Shipping Capacity
Overview
Kth Largest Element in an Array
K Closest Points to Origin
Find K Closest Elements
Merge K Sorted Lists
Median from Data Stream
Introduction
Fundamentals
Return Values
Maximum Depth of Binary Tree
Path Sum
Passing Values Down and Helper Functions
Validate Binary Search Tree
Calculate Tilt
Diameter of a Binary Tree
Path Sum II
Longest Univalue Path
Graphs Overview
Adjacency List
Copy Graph
Graph Valid Tree
Matrices
Flood Fill
Number of Islands
Surrounded Regions
Pacific Atlantic Water Flow
Introduction
Overview
Level Order Sum
Rightmost Node
Zigzag Level Order
Maximum Width of Binary Tree
Graphs Overview
Minimum Knight Moves
Rotting Oranges
01-Matrix
Bus Routes
Overview
Word Search
Solution Space Trees
Subsets
Generate Parentheses
Combination Sum
Palindrome Partitioning
N-Queens
Overview
Course Schedule
Course Schedule II
Shortest Path Algorithms
Network Delay Time
Cheapest Flights Within K Stops
Path With Minimum Effort
Find City with Fewest Reachable
Fundamentals
Solving a Question with Dynamic Programming
Counting Bits
Decode Ways
Unique Paths
Maximal Square
Longest Increasing Subsequence
Word Break
Maximum Profit in Job Scheduling
Paint House
Paint House II
Minimum Window Subsequence
Overview
Best Time to Buy and Sell Stock
Gas Station
Jump Game
Jump Game II
Partition Labels
Overview
Implement Trie Methods
Prefix Matching
Overview
Count Vowels in Substrings
Subarray Sum Equals K
Spiral Matrix
Rotate Image
Set Matrix Zeroes
Vote For New Content
Pricing
Sign in / Sign up
Search
⌘K
Pricing

Tutor

Sliding Window

Max Sum of Distinct Subarrays Length k

medium

max (21)341224132;341225102;21365487109
Count: 10
abcValid triangle requires:a + b > c AND a + c > b AND b + c > a(every pair must sum to more than the third side)3511SOURCE23211SOURCE23UNREACHABLE$100$100$100$5000SRC123DST$100$100$1000SRC123DST01233141Threshold: 4Answer: 32 reachable01234231118Threshold: 2Answer: 01 reachable1102233321432263321
DESCRIPTION (inspired by Leetcode.com)

Given an integer array nums and an integer k, write a function to identify the highest possible sum of a subarray within nums, where the subarray meets the following criteria: its length is k, and all of its elements are unique. If no such subarray exists, return 0.

Example 1: Input:

nums = [3, 2, 2, 3, 4, 6, 7, 7, -1]
k = 4

Output:

20

Explanation: The subarrays of nums with length 4 are:

[3, 2, 2, 3] # elements 3 and 2 are repeated.
[2, 2, 3, 4] # element 2 is repeated.
[2, 3, 4, 6] # meets the requirements and has a sum of 15.
[3, 4, 6, 7] # meets the requirements and has a sum of 20.
[4, 6, 7, 7] # element 7 is repeated.
[6, 7, 7, -1] # element 7 is repeated.

We return 20 because it is the maximum subarray sum of all the subarrays that meet the conditions.

Example 2: Input:

nums = [5, 5, 5, 5, 5]
k = 3

Output:

0

Explanation: Every subarray of length 3 contains duplicate elements, so no valid subarray exists. Return 0.

Explanation

This solution uses a fixed-length sliding window to iterate over all subarrays of length k in O(n) time and O(k) space. For each subarray of length k, we check if all elements are distinct. If they are, then we compute the sum of the subarray and compare it to the maximum sum we have seen so far, and return the maximum sum at the end.
We represent the state of the current window using two variables:
  • curr_sum: The sum of all elements in the window.
  • state: A dictionary mapping each element in the window to the number of times it appears in the window.
We use a for-loop to iterate through each element in nums. For each element, we increment its count in state and add its value to curr_sum. We do this until the window reaches size k:
Visualization
Python
Language
def maxSum(nums, k):
max_sum = float("-inf")
start = 0
state = {}
curr_sum = 0
for end in range(len(nums)):
curr_sum = curr_sum + nums[end]
state[nums[end]] = state.get(nums[end], 0) + 1
if end - start + 1 == k:
if len(state) == k:
max_sum = max(max_sum, curr_sum)
curr_sum = curr_sum - nums[start]
state[nums[start]] = state[nums[start]] - 1
if state[nums[start]] == 0:
del state[nums[start]]
start += 1
return 0 if max_sum == float("-inf") else max_sum
32234677-1

start

max sum distinct subarrays of size k

0 / 5

Expanding window until it reaches size k = 4
Each time the window is of size k, we check if the window contains all distinct elements by comparing the length of state to k (if len(state) == k, then all elements in the window are distinct):
If it is, then we compare curr_sum to max_sum and update max_sum if curr_sum is greater.
We then prepare for the next iteration by contracting the window, which involves decrementing the count of the leftmost element in the window and removing it from state if its count is 0. We also subtract the leftmost element from curr_sum. This allows us to maintain the fixed length of the window.
Visualization
Python
Language
def maxSum(nums, k):
max_sum = float("-inf")
start = 0
state = {}
curr_sum = 0
for end in range(len(nums)):
curr_sum = curr_sum + nums[end]
state[nums[end]] = state.get(nums[end], 0) + 1
if end - start + 1 == k:
if len(state) == k:
max_sum = max(max_sum, curr_sum)
curr_sum = curr_sum - nums[start]
state[nums[start]] = state[nums[start]] - 1
if state[nums[start]] == 0:
del state[nums[start]]
start += 1
return 0 if max_sum == float("-inf") else max_sum
{3:2, 2:2}state32234677-10max_sum

curr_sum: 10

start: 0 | end: 3

expand window

0 / 4

Expanding and contracting the window until first valid subarray is found
We do this until the window reaches the end of nums and return max_sum at the end.
Visualization
Python
Language
def maxSum(nums, k):
max_sum = float("-inf")
start = 0
state = {}
curr_sum = 0
for end in range(len(nums)):
curr_sum = curr_sum + nums[end]
state[nums[end]] = state.get(nums[end], 0) + 1
if end - start + 1 == k:
if len(state) == k:
max_sum = max(max_sum, curr_sum)
curr_sum = curr_sum - nums[start]
state[nums[start]] = state[nums[start]] - 1
if state[nums[start]] == 0:
del state[nums[start]]
start += 1
return 0 if max_sum == float("-inf") else max_sum
{2:1, 3:1, 4:1, 6:1}state32234677-10max_sum

curr_sum: 15

start: 2 | end: 5

expand window

0 / 10

Expanding and contracting the window until the end of the array.

Example Input 2

Let's look at an edge case: nums = [5, 5, 5, 5, 5] and k = 3.
At first glance, you might think the answer is 15 (since 5 + 5 + 5 = 15). But remember, the problem asks for the maximum sum of subarrays with distinct elements only.
In this case, every subarray of length 3 contains duplicate elements:
  • [5, 5, 5] - all three elements are the same (not distinct)
  • [5, 5, 5] - still all duplicates
  • [5, 5, 5] - same issue
Since no subarray of length 3 contains all distinct elements, we can't sum any of them. The answer is 0.

Solution

Visualization
Python
Language
Try these examples:
def maxSum(nums, k):
max_sum = float("-inf")
start = 0
state = {}
curr_sum = 0
for end in range(len(nums)):
curr_sum = curr_sum + nums[end]
state[nums[end]] = state.get(nums[end], 0) + 1
if end - start + 1 == k:
if len(state) == k:
max_sum = max(max_sum, curr_sum)
curr_sum = curr_sum - nums[start]
state[nums[start]] = state[nums[start]] - 1
if state[nums[start]] == 0:
del state[nums[start]]
start += 1
return 0 if max_sum == float("-inf") else max_sum
32234677-1

start

max sum distinct subarrays of size k

0 / 19

Mark as read

Next: Variable Length Sliding Window

Your account is free and you can post anonymously if you choose.

Unlock Premium Coding Content

Interactive algorithm visualizations
Guided Practice
Recent interview questions
Learn More
Reading Progress

On This Page

Explanation

Example Input 2

Solution

Questions
Meta SWE Interview QuestionsAmazon SWE Interview QuestionsGoogle SWE Interview QuestionsOpenAI SWE Interview QuestionsEngineering Manager (EM) Interview Questions
Learn
Learn System DesignLearn DSALearn BehavioralLearn ML System DesignLearn Low Level DesignGuided Practice
Links
FAQPricingGift PremiumHello Interview Premium
Legal
Terms and ConditionsPrivacy PolicySecurity
Contact
About UsProduct Support

7511 Greenwood Ave North Unit #4238 Seattle WA 98103


© 2026 Optick Labs Inc. All rights reserved.

Login to track your progress