Problem Description
Given an n x n grid containing only values 0 and 1, where 0 represents water and 1 represents land, find a water cell such that its distance to the nearest land cell is maximized, and return the distance. If no land or water exists in the grid, return -1.
Key Insights
- The problem requires maximizing the distance from water cells to the nearest land cells.
- Manhattan distance is used to measure the distance between two cells.
- A breadth-first search (BFS) approach is suitable for this problem as it can explore all possible cells uniformly.
- The solution leverages multiple starting points (land cells) to explore distances to water cells.
Space and Time Complexity
Time Complexity: O(n^2) - We traverse each cell in the grid. Space Complexity: O(n^2) - In the worst case, we might need to store all the water cells in the queue.
Solution
To solve this problem, we can use a breadth-first search (BFS) approach. We start by identifying all the land cells (1s) and enqueue them as our initial points. Then, we perform BFS from these land cells to explore the distances to the water cells (0s). Each time we reach a water cell, we calculate the distance from the nearest land cell and keep track of the maximum distance found. The BFS ensures that we explore the closest cells first, allowing us to maximize the distance to water cells efficiently.