Problem Description
You are given a 2D binary array grid. You need to find 3 non-overlapping rectangles having non-zero areas with horizontal and vertical sides such that all the 1's in grid lie inside these rectangles. Return the minimum possible sum of the area of these rectangles. Note that the rectangles are allowed to touch.
Key Insights
- The problem requires covering all the 1's in the grid using three rectangles.
- The rectangles must be non-overlapping, but they can touch.
- The objective is to minimize the total area covered by the rectangles.
- The grid size is relatively small (maximum 30x30), allowing for exhaustive search techniques.
Space and Time Complexity
Time Complexity: O(N^3 * M^3), where N is the number of rows and M is the number of columns in the grid. This accounts for iterating through all possible rectangle placements. Space Complexity: O(1), as we only use a constant amount of additional space beyond the input grid.
Solution
The solution involves iterating over all possible combinations of three rectangles that can cover all the 1's in the grid. For each rectangle, we calculate its area and keep track of the minimum total area for valid combinations. The approach utilizes nested loops to select the top-left and bottom-right corners of each rectangle, ensuring that they don't overlap with each other. A set is used to track which 1's have already been covered by previously selected rectangles.