Skip to main content

1162 - As Far from Land as Possible (Medium)

https://leetcode.com/problems/as-far-from-land-as-possible/

Problem Statement

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.

The distance used in this problem is the Manhattan distance: the distance between two cells (x0, y0) and (x1, y1) is |x0 - x1| + |y0 - y1|.

Example 1:

Input: grid = [[1,0,1],[0,0,0],[1,0,1]]
Output: 2
Explanation: The cell (1, 1) is as far as possible from all the land with distance 2.

Example 2:

Input: grid = [[1,0,0],[0,0,0],[0,0,0]]
Output: 4
Explanation: The cell (2, 2) is as far as possible from all the land with distance 4.

Constraints:

  • n == grid.length
  • n == grid[i].length
  • 1 <= n <= 100
  • grid[i][j] is 0 or 1

Approach 1: BFS

We use a queue to store all coordinates for each 11. If the size of the queue is nnn * n, then we can return 1-1. Otherwise, we can walk the grid and mark distdist for those cells with 00. The answer would be dist1dist - 1.

Written by @wingkwong
class Solution {
public:
int maxDistance(vector<vector<int>>& grid) {
int n = grid.size();
queue<pair<int, int>> q, q1;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (grid[i][j] == 1) {
// put all starting points
q.push({i, j});
}
}
}
// early exit. return -1
if (q.size() == n * n) {
return -1;
}
int dist = 0;
int dirx[4] = {-1, 0, 0, 1};
int diry[4] = {0, 1, -1, 0};
// standard bfs
while (!q.empty()) {
// walk the grid
dist++;
int m = q.size();
for (int it = 0 ; it < m; it++) {
auto [i, j] = q.front(); q.pop();
for (int k = 0; k < 4; k++) {
int ni = i + dirx[k];
int nj = j + diry[k];
if (ni >= 0 && nj >= 0 && ni < n && nj < n && grid[ni][nj] == 0) {
// mark dist to avoid from visiting again
grid[ni][nj] = dist;
// next point to start
q.push({ni, nj});
}
}
}
}
return --dist;
}
};