• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
neverlandly
博客园    首页    新随笔    联系   管理    订阅  订阅

Leetcode: Walls and Gates

You are given a m x n 2D grid initialized with these three possible values.

-1 - A wall or an obstacle.
0 - A gate.
INF - Infinity means an empty room. We use the value 231 - 1 = 2147483647 to represent INF as you may assume that the distance to a gate is less than 2147483647.
Fill each empty room with the distance to its nearest gate. If it is impossible to reach a gate, it should be filled with INF.

For example, given the 2D grid:
INF  -1  0  INF
INF INF INF  -1
INF  -1 INF  -1
  0  -1 INF INF
After running your function, the 2D grid should be:
  3  -1   0   1
  2   2   1  -1
  1  -1   2  -1
  0  -1   3   4

Push all gates into queue first. Then for each gate update its neighbor cells who is empty and push them to the queue.

 Repeating above steps until there is nothing left in the queue.

 1 public class Solution {
 2     int[][] dirs = new int[][] {{-1, 0}, {1, 0}, {0, -1}, {0, 1}};
 3     
 4     public void wallsAndGates(int[][] rooms) {
 5         if (rooms.length == 0 || rooms[0].length == 0) return;
 6         Queue<int[]> queue = new LinkedList<>();
 7         for (int i = 0; i < rooms.length; i++) {
 8             for (int j = 0; j < rooms[0].length; j++) {
 9                 if (rooms[i][j] == 0) queue.add(new int[]{i, j});
10             }
11         }
12         int steps = 0;
13         while (!queue.isEmpty()) {
14             int size = queue.size();
15             for (int i = 0; i < size; i ++) {
16                 int[] cur = queue.poll();
17                 for (int[] dir : dirs) {
18                     int x = cur[0] + dir[0];
19                     int y = cur[1] + dir[1];
20                     if (x >= 0 && x < rooms.length && y >= 0 && y < rooms[0].length && rooms[x][y] == Integer.MAX_VALUE) {
21                         rooms[x][y] = steps + 1;
22                         queue.offer(new int[]{x, y});
23                     }
24                 }
25             }
26             steps ++;
27         }
28     }
29 }

 

 

Another way: similar

 1 public class Solution {
 2     public void wallsAndGates(int[][] rooms) {
 3         if (rooms.length == 0 || rooms[0].length == 0) return;
 4         Queue<int[]> queue = new LinkedList<>();
 5         for (int i = 0; i < rooms.length; i++) {
 6             for (int j = 0; j < rooms[0].length; j++) {
 7                 if (rooms[i][j] == 0) queue.add(new int[]{i, j});
 8             }
 9         }
10         while (!queue.isEmpty()) {
11             int[] top = queue.remove();
12             int row = top[0], col = top[1];
13             if (row > 0 && rooms[row - 1][col] == Integer.MAX_VALUE) {
14                 rooms[row - 1][col] = rooms[row][col] + 1;
15                 queue.add(new int[]{row - 1, col});
16             }
17             if (row < rooms.length - 1 && rooms[row + 1][col] == Integer.MAX_VALUE) {
18                 rooms[row + 1][col] = rooms[row][col] + 1;
19                 queue.add(new int[]{row + 1, col});
20             }
21             if (col > 0 && rooms[row][col - 1] == Integer.MAX_VALUE) {
22                 rooms[row][col - 1] = rooms[row][col] + 1;
23                 queue.add(new int[]{row, col - 1});
24             }
25             if (col < rooms[0].length - 1 && rooms[row][col + 1] == Integer.MAX_VALUE) {
26                 rooms[row][col + 1] = rooms[row][col] + 1;
27                 queue.add(new int[]{row, col + 1});
28             }
29         }
30     }
31 }

 

posted @ 2015-12-26 13:14  neverlandly  阅读(401)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3