Problem Description
You are given an n x n binary matrix grid where 1 represents land and 0 represents water. An island is a 4-directionally connected group of 1's not connected to any other 1's. There are exactly two islands in grid. You may change 0's to 1's to connect the two islands to form one island. Return the smallest number of 0's you must flip to connect the two islands.
Key Insights
- We need to identify the two separate islands in the grid.
- We can perform a Breadth-First Search (BFS) or Depth-First Search (DFS) to find the islands and their boundary cells.
- The goal is to find the shortest distance (in terms of 0's) between the two islands.
- The problem can be visualized as a search for the shortest path in an unweighted graph, where the nodes are the 0's connecting the two islands.
Space and Time Complexity
Time Complexity: O(n^2) - We may need to scan the entire grid to identify the islands and their boundaries.
Space Complexity: O(n^2) - Used for storing the distance of boundary cells and the queue for BFS/DFS.
Solution
To solve the problem, we can use a combination of BFS/DFS to identify the two islands and then calculate the minimum number of flips needed to connect them:
- Use DFS to mark one of the islands and store its boundary cells.
- Perform BFS from the boundary cells of the first island, expanding outward to find the nearest boundary cell of the second island.
- Count the number of 0's encountered during the BFS until we reach the second island, which will give us the required number of flips.