Skip to main content

Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts - Solution & Explanation

MediumArrayGreedySorting16 min readAsked at: BNY Mellon, Expedia, Google +1
Practice this problem

Problem Statement

You are given a rectangular cake of size h x w and two arrays of integers horizontalCuts and verticalCuts where:

  • horizontalCuts[i] is the distance from the top of the rectangular cake to the ith horizontal cut and similarly, and
  • verticalCuts[j] is the distance from the left of the rectangular cake to the jth vertical cut.

Return the maximum area of a piece of cake after you cut at each horizontal and vertical position provided in the arrays horizontalCuts and verticalCuts. Since the answer can be a large number, return this modulo 109 + 7.

 

Example 1:

Input: h = 5, w = 4, horizontalCuts = [1,2,4], verticalCuts = [1,3]
Output: 4 
Explanation: The figure above represents the given rectangular cake. Red lines are the horizontal and vertical cuts. After you cut the cake, the green piece of cake has the maximum area.

Example 2:

Input: h = 5, w = 4, horizontalCuts = [3,1], verticalCuts = [1]
Output: 6
Explanation: The figure above represents the given rectangular cake. Red lines are the horizontal and vertical cuts. After you cut the cake, the green and yellow pieces of cake have the maximum area.

Example 3:

Input: h = 5, w = 4, horizontalCuts = [3], verticalCuts = [3]
Output: 9

 

Constraints:

  • 2 <= h, w <= 109
  • 1 <= horizontalCuts.length <= min(h - 1, 105)
  • 1 <= verticalCuts.length <= min(w - 1, 105)
  • 1 <= horizontalCuts[i] < h
  • 1 <= verticalCuts[i] < w
  • All the elements in horizontalCuts are distinct.
  • All the elements in verticalCuts are distinct.

Approach Overview

Problem Overview: A rectangular cake of size h × w is cut using horizontal and vertical cut positions. Each cut divides the cake completely across that axis. After all cuts are applied, multiple smaller rectangles are formed. The task is to compute the maximum possible area of any resulting piece. Because the result can be large, return it modulo 1e9 + 7.

Approach 1: Sort and Find Maximum Gaps (Greedy) (Time: O(n log n), Space: O(1) or O(n) depending on sorting)

The key observation: the largest piece must come from the largest distance between two consecutive horizontal cuts and the largest distance between two consecutive vertical cuts. First sort both cut arrays using a standard sorting routine. Then iterate through each list to compute the maximum gap between adjacent cuts. Remember to also check the edges: 0 → first_cut and last_cut → h (or w). The maximum horizontal gap multiplied by the maximum vertical gap gives the largest rectangle area. This approach works because cuts partition the cake into independent intervals; maximizing each dimension independently yields the optimal rectangle. The final multiplication is taken modulo 1e9+7. This method relies on simple iteration over an array and a greedy selection of the largest gaps.

Approach 2: Dynamic Programming with Memoization (Time: O(n × m), Space: O(n × m))

A more exploratory method models the cake as segments between cuts and recursively computes the maximum area achievable from combinations of horizontal and vertical partitions. Memoization stores results for subproblems defined by index ranges between cuts. For each state, the algorithm considers potential partitions and calculates the maximum area from resulting segments. Although this demonstrates how subproblems overlap and how memoization avoids recomputation, it is less efficient than the greedy observation because the rectangle area is determined solely by the largest gaps. The DP approach is mostly educational for practicing recursion and caching patterns often seen in greedy-vs-DP comparisons.

Recommended for interviews: Interviewers expect the sorting + maximum gap insight. A brute or DP-style exploration shows you understand the partitioning idea, but recognizing that the largest piece is defined by the largest consecutive gaps demonstrates algorithmic clarity. The optimal solution runs in O(n log n) due to sorting and O(1) additional space, which is efficient even for large cut arrays.

Approach 1: Sort and Find Maximum Gaps

This approach involves sorting the cut arrays and finding the maximum gaps between consecutive cuts, including the edges of the cake. Once the maximum horizontal and vertical gaps are identified, the maximum possible area of a piece of cake can be obtained by multiplying these two maximum gaps.

The function begins by sorting the horizontal and vertical cuts. It then calculates the maximum gap between each pair of consecutive cuts along with the initial and final edge to get the maximum possible length or width. This ensures we consider the pieces that extend to the end of the cake as well. The maximum area is found by multiplying these maximum gaps and returning the result modulo 10^9 + 7.

Code

Python

C++

Java

C

C#

JavaScript

Complexity

Time Complexity: O(n log n + m log m), where n and m are the sizes of the horizontalCuts and verticalCuts arrays, due to sorting.
Space Complexity: O(1) additional space is used, as computations are done in-place.

Try this approach in the editor →

Approach 2: Dynamic Programming Approach (Memoization)

This approach uses dynamic programming to store previously calculated results for maximum gaps between cuts, optimizing repeated calculations by using memoization. This is particularly useful when recalculating maximum differences thousands of times for larger input sizes.

The Python DP solution stores results of maximum gap calculations in a dictionary (memo) to avoid repeated computation. It defines a helper function getMaxGap() for finding the largest segment gap using the memoization pattern. This stores every result fetched per list, speeding up subsequent gap queries.

Code

Python

JavaScript

Complexity

Time Complexity: O(n log n + m log m) for sorting; O(n + m) in constant time queries after sorting using memo.
Space Complexity: O(n + m) for memoization storage.

Try this approach in the editor →

Approach 3: Sorting

We first sort horizontalCuts and verticalCuts separately, and then traverse both arrays to calculate the maximum difference between adjacent elements. We denote these maximum differences as x and y, respectively. Finally, we return x times y.

Note that we need to consider the boundary cases, i.e., the first and last elements of horizontalCuts and verticalCuts.

The time complexity is O(mlog m + nlog n), where m and n are the lengths of horizontalCuts and verticalCuts, respectively. The space complexity is O(log m + log n).

Code

Python

Java

C++

Go

TypeScript

Rust

Try this approach in the editor →

Complexity Comparison

ApproachComplexity
Sort and Find Maximum Gaps

Time Complexity: O(n log n + m log m), where n and m are the sizes of the horizontalCuts and verticalCuts arrays, due to sorting.
Space Complexity: O(1) additional space is used, as computations are done in-place.

Dynamic Programming Approach (Memoization)

Time Complexity: O(n log n + m log m) for sorting; O(n + m) in constant time queries after sorting using memo.
Space Complexity: O(n + m) for memoization storage.

Sorting—

Detailed Complexity Analysis

ApproachTimeSpaceWhen to Use
Sort and Find Maximum Gaps (Greedy)O(n log n)O(1) extraBest general solution; compute largest horizontal and vertical gaps after sorting cuts
Dynamic Programming (Memoization)O(n × m)O(n × m)Educational exploration of partition states; rarely needed for the optimal solution

Video Solution

Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts | Leetcode 1465 | Live coding • Coding Decoded • 6,818 views views

Watch 9 more video solutions →

Frequently Asked Questions

Is Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts easy or hard?
The problem is rated Medium on LeetCode because the key greedy observation is not immediately obvious. Once you realize the answer depends on the maximum gaps between cuts, the implementation becomes straightforward.
Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts Python/Java solution
Python and Java implementations follow the same pattern: sort the horizontal and vertical cut arrays, compute the largest gap in each list including the edges, multiply the two gaps, and return the result modulo 1e9+7. The logic remains identical across C++, JavaScript, and other languages.
How to solve Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts in O(n)?
If the cut arrays were already sorted, the problem could be solved in O(n) time by scanning once to compute the largest distance between consecutive cuts. In practice, inputs are unsorted, so sorting dominates the complexity, resulting in O(n log n).
What is the best approach for Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts?
The optimal approach sorts the horizontalCuts and verticalCuts arrays and finds the maximum gap between consecutive cuts in each direction. The largest rectangle area is the product of the maximum horizontal gap and the maximum vertical gap. This greedy observation reduces the problem to simple iteration after sorting, giving O(n log n) time complexity.
Is Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts asked at Google/Amazon/Meta?
This problem pattern appears frequently in interviews at companies like Amazon and Google because it tests sorting, greedy reasoning, and boundary handling. Interviewers look for the insight that the maximum rectangle is defined by the largest consecutive gaps after cuts.
What data structure is used in Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts?
The solution primarily uses arrays to store cut positions. Sorting algorithms and simple iteration are applied to compute maximum gaps between adjacent elements.
What is the time complexity of Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts?
The optimal greedy solution runs in O(n log n) time because both cut arrays must be sorted. After sorting, computing the largest gaps requires a single linear scan. Space complexity is O(1) extra if sorting is done in place.

Ready to solve this problem?

Practice Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts with our built-in code editor and test cases.

Practice on FleetCode