LeetCode 363: Max Sum of Rectangle No Larger Than K Solution in Python – A Step-by-Step Guide

Imagine you’re given a grid of numbers—like a treasure map—and you need to find a rectangle within it whose sum is as large as possible but doesn’t exceed a given limit, K. That’s the challenge of LeetCode 363: Max Sum of Rectangle No Larger Than K, a hard-level problem that blends grid traversal with optimization. Using Python, we’ll explore two solutions: the Best Solution—prefix sums with binary search for O(m²nlog n) efficiency—and an Alternative Solution—brute force at O(m²*n²). With examples, clear code breakdowns, and a friendly vibe, this guide will help you uncover that max sum. Let’s start exploring!

What Is LeetCode 363: Max Sum of Rectangle No Larger Than K?

Section link icon

LeetCode 363: Max Sum of Rectangle No Larger Than K provides a 2D matrix of integers and a target K. Your task is to find the maximum sum of any rectangle (submatrix) in the grid such that the sum is ≤ K. It’s an extension of the 1D max subarray problem into two dimensions—challenging but rewarding!

Problem Statement

  • Input:
    • matrix: 2D list of integers.
    • k: Integer representing the upper bound for the sum.
  • Output: Integer - Maximum sum of a rectangle ≤ K.
  • Rules:
    • Rectangle must be contiguous (rows and columns consecutive).
    • Return the largest sum that does not exceed K.

Constraints

  • 1 <= m, n <= 200 (m rows, n columns)
  • -10⁵ <= matrix[i][j] <= 10⁵
  • -10⁹ <= k <= 10⁹

Examples

  • Input: matrix = [[1,0,1],[0,-2,3]], k = 2
    • Output: 2
      • Rectangle [1,0], [0,-2] sums to -1 < 2.
      • Rectangle [1] sums to 1 < 2.
      • Rectangle [3] sums to 3 > 2.
      • Best: [2] (bottom-right corner) = 2 ≤ 2.
  • Input: matrix = [[2,2,-1]], k = 3
    • Output: 3
      • [2,2] = 4 > 3, [2] = 2 < 3, [2,-1] = 1 < 3, best: [2,2,-1] = 3 ≤ 3.

These show the balancing act—let’s solve it!

Understanding the Problem: Finding the Max Sum Rectangle

Section link icon

To tackle LeetCode 363 in Python, we need to: 1. Identify all possible rectangles in the matrix. 2. Compute their sums. 3. Find the maximum sum that’s ≤ K.

A naive approach might check every rectangle, but that’s too slow. Instead, we’ll use:

  • Best Solution: Prefix sums with binary search—O(m²*n*log n) time, O(n) space—efficient and clever.
  • Alternative Solution: Brute force—O(m²*n²) time, O(1) space—simple but impractical.

Let’s optimize with the best solution!

Alternative Solution: Brute Force

Section link icon

Why an Alternative Approach?

The brute force solution is O(m²*n²) but straightforward—check every possible rectangle and its sum. It’s slow but easy to understand—great for grasping the problem before optimizing!

How It Works

  • Enumerate: Try all top-left and bottom-right corners.
  • Compute: Sum each rectangle.
  • Maximize: Track max sum ≤ K.

Step-by-Step Example

For matrix = [[1,0,1],[0,-2,3]], k = 2:

  • Rectangles:
    • (0,0)-(0,0): [1] = 1.
    • (0,0)-(0,1): [1,0] = 1.
    • (0,0)-(0,2): [1,0,1] = 2.
    • (0,0)-(1,0): [1,0] = 1.
    • (1,2)-(1,2): [3] = 3 > 2.
    • And so on...
  • Max: 2 (e.g., [1,0,1]).

Code with Explanation

class Solution:
    def maxSumSubmatrix(self, matrix: List[List[int]], k: int) -> int:
        if not matrix or not matrix[0]:
            return 0

        m, n = len(matrix), len(matrix[0])
        max_sum = float('-inf')

        # Try all possible rectangles
        for top in range(m):
            for left in range(n):
                for bottom in range(top, m):
                    for right in range(left, n):
                        # Compute sum of rectangle
                        curr_sum = 0
                        for i in range(top, bottom + 1):
                            for j in range(left, right + 1):
                                curr_sum += matrix[i][j]
                        if curr_sum <= k:
                            max_sum = max(max_sum, curr_sum)

        return max_sum if max_sum != float('-inf') else 0

Explanation

  • Lines 7-19: Four nested loops:
    • Outer two: Top-left corner (top, left).
    • Inner two: Bottom-right corner (bottom, right).
    • Compute sum by iterating over rectangle.
    • Update max_sum if sum ≤ k.
  • Time: O(m²*n²)—all rectangles checked.
  • Space: O(1)—no extra space.

It’s like brute-forcing every treasure spot!

Comparing the Two Solutions

Section link icon
  • Prefix Sums with Binary Search (Best):
    • Time: O(m²*n*log n)—optimized search.
    • Space: O(n)—prefix sums.
    • Pros: Fast, scalable.
    • Cons: More complex.
  • Brute Force (Alternative):
    • Time: O(m²*n²)—exhaustive.
    • Space: O(1)—minimal.
    • Pros: Simple logic.
    • Cons: Too slow for large grids.

Binary search wins for efficiency!

Additional Examples and Edge Cases

Section link icon
  • [[1]], k=2: 1.
  • Empty matrix: 0.
  • Negative k: Handles negatives (e.g., k=-5).

Both work, binary search is faster.

Complexity Breakdown

Section link icon
  • Binary Search:
    • Time: O(m²*n*log n).
    • Space: O(n).
  • Brute Force:
    • Time: O(m²*n²).
    • Space: O(1).

Binary search excels for performance.

Key Takeaways

Section link icon
  • Binary Search: Optimize with prefixes—smart and fast!
  • Brute Force: Check everything—easy to start!
  • Grids: 2D challenges are fun.
  • Python Tip: SortedList rocks—see [Python Basics](/python/basics).

Final Thoughts: Find That Sum

Section link icon

LeetCode 363: Max Sum of Rectangle No Larger Than K in Python is a grid optimization challenge. Prefix sums with binary search is the efficiency champ, while brute force builds understanding. Want more? Try LeetCode 53: Maximum Subarray or LeetCode 304: Range Sum Query 2D. Ready to sum? Visit Solve LeetCode 363 on LeetCode and maximize that rectangle today!