53. Maximum Subarray - Detailed Explanation

Free Coding Questions Catalog
Boost your coding skills with our essential coding questions catalog. Take a step towards a better tech career now!

1. Problem Statement

Description:

Given an integer array nums, find the contiguous subarray (containing at least one number) which has the largest sum and return its sum.

Examples:

  1. Example 1:

    • Input: nums = [-2, 1, -3, 4, -1, 2, 1, -5, 4]
    • Output: 6
    • Explanation: The contiguous subarray [4, -1, 2, 1] has the largest sum of 6.
  2. Example 2:

    • Input: nums = [1]
    • Output: 1
    • Explanation: Since there is only one element, the maximum subarray is [1] with sum 1.
  3. Example 3:

    • Input: nums = [5, 4, -1, 7, 8]
    • Output: 23
    • Explanation: The entire array forms the maximum subarray with sum 23.

Constraints:

  • 1 <= nums.length <= 10^5
  • -10^4 <= nums[i] <= 10^4

Hints

  • Hint 1:
    When iterating through the array, ask yourself at each index: “Should I add the current element to the existing subarray or start a new subarray from here?”

  • Hint 2:
    Think about dynamic programming. Can you store information at each step that tells you the maximum sum ending at that index?

Approaches

Approach 1: Brute Force

Explanation

The brute force method involves checking every possible contiguous subarray and computing its sum. You then keep track of the maximum sum encountered.

Steps:

  1. Loop through every possible starting index i in the array.
  2. For each i, loop through every possible ending index j (where j >= i).
  3. Compute the sum of the subarray nums[i:j+1].
  4. Keep track of the maximum sum found.

Complexity Analysis

  • Time Complexity:
    • Without optimization: O(n³) (if you sum elements each time)
    • With precomputed prefix sums: O(n²)
  • Space Complexity: O(1) or O(n) if you store a prefix sum array.

Visual Example

For nums = [a, b, c]:

  • Subarrays: [a], [a, b], [a, b, c], [b], [b, c], [c]
  • Calculate each sum and determine the maximum.

Python Code

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Approach 2: Optimal Solution Using Kadane’s Algorithm

Explanation

Kadane’s Algorithm uses dynamic programming to solve the problem in O(n) time. The idea is to iterate through the array while keeping track of the maximum subarray sum ending at the current position and updating a global maximum if necessary.

Steps:

  1. Initialization:
    • Let current_max and global_max be the first element of the array.
  2. Iteration:
    • For each element nums[i] from index 1 onward:
      • Update current_max as the maximum between nums[i] (starting a new subarray) and current_max + nums[i] (extending the current subarray).
      • Update global_max to be the maximum of itself and current_max.
  3. Result:
    • Return global_max as it represents the largest sum found.

Complexity Analysis

  • Time Complexity: O(n) – each element is processed once.
  • Space Complexity: O(1) – only constant extra space is used.

Visual Example Walkthrough

For nums = [-2, 1, -3, 4, -1, 2, 1, -5, 4]:

IndexElementCurrent Max Calculationcurrent_maxglobal_max
0-2Initialization-2-2
11max(1, -2 + 1) = max(1, -1)1max(-2, 1)=1
2-3max(-3, 1 + (-3)) = max(-3, -2)-21
34max(4, -2 + 4) = max(4, 2)4max(1, 4)=4
4-1max(-1, 4 + (-1)) = max(-1, 3)34
52max(2, 3 + 2) = max(2, 5)5max(4, 5)=5
61max(1, 5 + 1) = max(1, 6)6max(5, 6)=6
7-5max(-5, 6 + (-5)) = max(-5, 1)16
84max(4, 1 + 4) = max(4, 5)5max(6, 5)=6

The final answer is 6.

Python Code

Python3
Python3

. . . .

Java Code

Java
Java

. . . .

Common Mistakes

  • Initialization Errors:
    Failing to initialize current_max and global_max with the first element can lead to wrong answers, especially when all numbers are negative.

  • Not Handling Negative Numbers:
    Some may assume that the maximum subarray must have a positive sum. However, if all numbers are negative, the maximum subarray is the largest (least negative) element.

  • Overcomplicating the Problem:
    Using unnecessarily complex methods (like brute force without optimizations) can lead to timeouts for large inputs.

Edge Cases

  • Single Element Array:
    The algorithm should return that element.

  • All Negative Numbers:
    Ensure that your solution correctly identifies the maximum element when no positive sum exists.

  • Large Arrays:
    The optimal solution (Kadane’s algorithm) is necessary when nums.length is large (up to 10^5).

Alternative Variations of the Problem

  • Maximum Product Subarray:
    Instead of summing, you need to find the contiguous subarray with the largest product.

  • Circular Maximum Subarray:
    The array is considered circular, meaning that the subarray can wrap from the end of the array back to the beginning.

  • Best Time to Buy and Sell Stock:
    Find the maximum profit by choosing the best day to buy and sell.

  • Longest Increasing Subsequence:
    Identify the longest subsequence of a given sequence in which the elements are in sorted order.

  • Subarray Sum Equals K:
    Count the number of contiguous subarrays that sum to a given value.

  • Maximum Product Subarray:
    Find the contiguous subarray within an array (containing at least one number) which has the largest product.

TAGS
leetcode
CONTRIBUTOR
Design Gurus Team
-

GET YOUR FREE

Coding Questions Catalog

Design Gurus Newsletter - Latest from our Blog
Boost your coding skills with our essential coding questions catalog.
Take a step towards a better tech career now!
Explore Answers
Is C++ used in Microsoft?
Adapting known algorithms to fit variant problem requirements
Does Elon Musk work for OpenAI?
Related Courses
Image
Grokking the Coding Interview: Patterns for Coding Questions
Grokking the Coding Interview Patterns in Java, Python, JS, C++, C#, and Go. The most comprehensive course with 476 Lessons.
Image
Grokking Modern AI Fundamentals
Master the fundamentals of AI today to lead the tech revolution of tomorrow.
Image
Grokking Data Structures & Algorithms for Coding Interviews
Unlock Coding Interview Success: Dive Deep into Data Structures and Algorithms.
Image
One-Stop Portal For Tech Interviews.
Copyright © 2025 Design Gurus, LLC. All rights reserved.
;