你现在手里有一份大小为 N x N 的『地图』(网格) grid,上面的每个『区域』(单元格)都用 0 和 1 标记好了。其中 0 代表海洋,1 代表陆地,你知道距离陆地区域最远的海洋区域是是哪一个吗?请返回该海洋区域到离它最近的陆地区域的距离。
我们这里说的距离是『曼哈顿距离』( Manhattan Distance):(x0, y0) 和 (x1, y1) 这两个区域之间的距离是 |x0 - x1| + |y0 - y1| 。
如果我们的地图上只有陆地或者海洋,请返回 -1。
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/as-far-from-land-as-possible
class Solution {
public int maxDistance(int[][] grid) {
int[] dx = {0, 0, 1, -1};
int[] dy = {1, -1, 0, 0};
Queue<int[]> queue = new ArrayDeque<>();
int m = grid.length, n = grid[0].length;
// 先把所有的陆地都入队。
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (grid[i][j] == 1) {
queue.offer(new int[] {i, j});
}
}
}
// 从各个陆地开始,一圈一圈的遍历海洋,最后遍历到的海洋就是离陆地最远的海洋。
boolean hasOcean = false;
int[] point = null;
int step=0;
while (!queue.isEmpty()) {
point = queue.poll();
int x = point[0], y = point[1];
// 取出队列的元素,将其四周的海洋入队。
for (int i = 0; i < 4; i++) {
int newX = x + dx[i];
int newY = y + dy[i];
if (newX < 0 || newX >= m || newY < 0 || newY >= n || grid[newX][newY] != 0) {
continue;
}
grid[newX][newY] = grid[x][y] + 1; // 这里我直接修改了原数组,因此就不需要额外的数组来标志是否访问
hasOcean = true;
queue.offer(new int[] {newX, newY});
}
}
// 没有陆地或者没有海洋,返回-1。
if (point == null || !hasOcean) {
return -1;
}
// 返回最后一次遍历到的海洋的距离。
return grid[point[0]][point[1]] - 1;
}
}
另一种
import java.util.LinkedList;
import java.util.Queue;
public class Solution {
public int maxDistance(int[][] grid) {
// 方向向量
int[][] directions = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
// 由于题目中给出了 grid 的范围,因此不用做输入检查
int N = grid.length;
Queue<Integer> queue = new LinkedList<>();
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (grid[i][j] == 1) {
queue.add(getIndex(i, j, N));
}
}
}
int size = queue.size();
if (size == 0 || size == N * N) {
return -1;
}
int step = 0;
while (!queue.isEmpty()) {
int currentQueueSize = queue.size();
for (int i = 0; i < currentQueueSize; i++) {
Integer head = queue.poll();
int currentX = head / N;
int currentY = head % N;
for (int[] direction : directions) {
int newX = currentX + direction[0];
int newY = currentY + direction[1];
// 只关心有效范围内的海洋(0)
if (inArea(newX, newY, N) && grid[newX][newY] == 0) {
// 赋值成为一个不等于 0 的整数均可,因为后续逻辑只关心海洋(0)
grid[newX][newY] = 1;
queue.add(getIndex(newX, newY, N));
}
}
}
step++;
}
// 由于最后一步,没有可以扩散的的区域,但是 step 加了 1,故在退出循环的时候应该减 1
return step - 1;
}
/**
* @param x 二维表格单元格横坐标
* @param y 二维表格单元格纵坐标
* @param cols 二维表格列数
* @return
*/
private int getIndex(int x, int y, int cols) {
return x * cols + y;
}
/**
* @param x 二维表格单元格横坐标
* @param y 二维表格单元格纵坐标
* @param N 二维表格行数(列数)
* @return 是否在二维表格有效范围内
*/
private boolean inArea(int x, int y, int N) {
return 0 <= x && x < N && 0 <= y && y < N;
}
public static void main(String[] args) {
// int[][] grid = {{1, 0, 1}, {0, 0, 0}, {1, 0, 1}};
int[][] grid = {{1, 0, 0}, {0, 0, 0}, {0, 0, 0}};
Solution solution = new Solution();
int res = solution.maxDistance(grid);
System.out.println(res);
}
}
作者:liweiwei1419
链接:https://leetcode-cn.com/problems/as-far-from-land-as-possible/solution/yan-du-you-xian-bian-li-java-by-liweiwei1419/