Leetcode: Pacific Atlantic Water Flow

本文介绍了一种解决特定地理模型问题的算法——如何找出既流向太平洋也流向大西洋的网格坐标。通过深度优先搜索(DFS)和广度优先搜索(BFS)两种方法实现遍历矩阵,标记可以流向两个海洋的单元格。
Given an m x n matrix of non-negative integers representing the height of each unit cell in a continent, the "Pacific ocean" touches the left and top edges of the matrix and the "Atlantic ocean" touches the right and bottom edges.

Water can only flow in four directions (up, down, left, or right) from a cell to another one with height equal or lower.

Find the list of grid coordinates where water can flow to both the Pacific and Atlantic ocean.

Note:
The order of returned grid coordinates does not matter.
Both m and n are less than 150.
Example:

Given the following 5x5 matrix:

  Pacific ~   ~   ~   ~   ~ 
       ~  1   2   2   3  (5) *
       ~  3   2   3  (4) (4) *
       ~  2   4  (5)  3   1  *
       ~ (6) (7)  1   4   5  *
       ~ (5)  1   1   2   4  *
          *   *   *   *   * Atlantic

Return:

[[0, 4], [1, 3], [1, 4], [2, 2], [3, 0], [3, 1], [4, 0]] (positions with parentheses in above matrix).

这题考点在于需要设置两个visited数组

Two Queue and add all the Pacific border to one queue; Atlantic border to another queue.

Keep a visited matrix for each queue. In the end, add the cell visited by two queue to the result.
BFS: Water flood from ocean to the cell. Since water can only flow from high/equal cell to low cell, add the neighboor cell with height larger or equal to current cell to the queue and mark as visited.(逆流而上)

Solution 1: 我自己的DFS (beat 89%)

 1 public class Solution {
 2     int[][] directions = new int[][]{{-1, 0}, {1, 0}, {0, -1}, {0, 1}};
 3     public List<int[]> pacificAtlantic(int[][] matrix) {
 4         List<int[]> res = new ArrayList<int[]>();
 5         if (matrix==null || matrix.length==0 || matrix[0].length==0) return res;
 6         int n = matrix.length, m = matrix[0].length;
 7         boolean[][] pVisited = new boolean[n][m];
 8         boolean[][] aVisited = new boolean[n][m];
 9         for (int i=0; i<n; i++) {
10             //pacific
11             dfs(matrix, i, 0, pVisited);
12             //atlatic
13             dfs(matrix, i, m-1, aVisited);
14         }
15         
16         for (int j=0; j<m; j++) {
17             //pacific
18             dfs(matrix, 0, j, pVisited);
19             //atlatic
20             dfs(matrix, n-1, j, aVisited);
21         }
22         
23         for (int i=0; i<n; i++) {
24             for (int j=0; j<m; j++) {
25                 if (pVisited[i][j] && aVisited[i][j])
26                     res.add(new int[]{i, j});
27             }
28         }
29         return res;
30     }
31     
32     public void dfs(int[][] matrix, int i, int j, boolean[][] visited) {
33         int n = matrix.length, m = matrix[0].length;
34         visited[i][j] = true;
35         for (int[] dir : directions) {
36             int row = dir[0] + i;
37             int col = dir[1] + j;
38             if (row>=0 && row<n && col>=0 && col<m && !visited[row][col] && matrix[i][j]<=matrix[row][col]) 
39                 dfs(matrix, row, col, visited);
40         }
41     }
42 }

 

Solution 2: BFS, refer to https://discuss.leetcode.com/topic/62379/java-bfs-dfs-from-ocean/2

 1 public class Solution {
 2     int[][]dir = new int[][]{{1,0},{-1,0},{0,1},{0,-1}};
 3     public List<int[]> pacificAtlantic(int[][] matrix) {
 4         List<int[]> res = new LinkedList<>();
 5         if(matrix == null || matrix.length == 0 || matrix[0].length == 0){
 6             return res;
 7         }
 8         int n = matrix.length, m = matrix[0].length;
 9         //One visited map for each ocean
10         boolean[][] pacific = new boolean[n][m];
11         boolean[][] atlantic = new boolean[n][m];
12         Queue<int[]> pQueue = new LinkedList<>();
13         Queue<int[]> aQueue = new LinkedList<>();
14         for(int i=0; i<n; i++){ //Vertical border
15             pQueue.offer(new int[]{i, 0});
16             aQueue.offer(new int[]{i, m-1});
17             pacific[i][0] = true;
18             atlantic[i][m-1] = true;
19         }
20         for(int i=0; i<m; i++){ //Horizontal border
21             pQueue.offer(new int[]{0, i});
22             aQueue.offer(new int[]{n-1, i});
23             pacific[0][i] = true;
24             atlantic[n-1][i] = true;
25         }
26         bfs(matrix, pQueue, pacific);
27         bfs(matrix, aQueue, atlantic);
28         for(int i=0; i<n; i++){
29             for(int j=0; j<m; j++){
30                 if(pacific[i][j] && atlantic[i][j])
31                     res.add(new int[]{i,j});
32             }
33         }
34         return res;
35     }
36     public void bfs(int[][]matrix, Queue<int[]> queue, boolean[][]visited){
37         int n = matrix.length, m = matrix[0].length;
38         while(!queue.isEmpty()){
39             int[] cur = queue.poll();
40             for(int[] d:dir){
41                 int x = cur[0]+d[0];
42                 int y = cur[1]+d[1];
43                 if(x<0 || x>=n || y<0 || y>=m || visited[x][y] || matrix[x][y] > matrix[cur[0]][cur[1]]){
44                     continue;
45                 }
46                 visited[x][y] = true;
47                 queue.offer(new int[]{x, y});
48             } 
49         }
50     }
51 }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值