1465. Maximum Area of a Piece of Cake After Horizontal and Vertical Cuts

Difficulty:
Related Topics:
Similar Questions:

    Problem

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

    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 10^9 + 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:

    Solution (Java)

    class Solution {
        public int maxArea(int h, int w, int[] horizontalCuts, int[] verticalCuts) {
            Arrays.sort(horizontalCuts);
            Arrays.sort(verticalCuts);
            long maxVertical = Math.max(0L, verticalCuts[0]);
            for (int i = 1; i < verticalCuts.length; i++) {
                int diff = (verticalCuts[i] - verticalCuts[i - 1]);
                maxVertical = Math.max(maxVertical, diff);
            }
            maxVertical = Math.max(maxVertical, (long) w - verticalCuts[verticalCuts.length - 1]);
            long maxHorizontal = Math.max(0L, horizontalCuts[0]);
            for (int i = 1; i < horizontalCuts.length; i++) {
                int diff = (horizontalCuts[i] - horizontalCuts[i - 1]);
                maxHorizontal = Math.max(maxHorizontal, diff);
            }
            maxHorizontal =
                    Math.max(maxHorizontal, (long) h - horizontalCuts[horizontalCuts.length - 1]);
            return (int) (maxVertical % 1000000007 * maxHorizontal % 1000000007) % 1000000007;
        }
    }
    

    Explain:

    nope.

    Complexity: