Problem Description
You are given an n x n binary matrix grid. You are allowed to change at most one 0 to be 1. Return the size of the largest island in grid after applying this operation. An island is a 4-directionally connected group of 1s.
Key Insights
- We need to identify all islands (groups of 1s) in the grid.
- Each island can be represented by its area (number of connected 1s).
- Changing a single 0 to 1 can potentially connect multiple islands.
- We should calculate the potential new island size for each 0 by summing the sizes of the adjacent islands.
Space and Time Complexity
Time Complexity: O(n^2)
Space Complexity: O(n^2)
Solution
To solve the problem, we will use Depth-First Search (DFS) to identify and calculate the sizes of all islands in the grid. We will store the sizes of these islands in a dictionary and use a separate DFS call to explore the grid again to consider each 0. For each 0, we will check its adjacent cells and sum the sizes of the connected islands (without double counting). The maximum size found during this process will be our answer.