leetcode 417 Pacific Atlantic Water Flow

背景

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:

  1. The order of returned grid coordinates does not matter.
  2. 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).

分析

连通性问题,用DFS。 求同时能流到两组边的点,因此从两组边出发,分别找出能连通的点,最后计算两部分点重合的部分,就是结果。

源码如下:

public List<int[]> pacificAtlantic(int[][] matrix) {
        List<int[]> result = new ArrayList<>();
        int rows = matrix.length;
        if (rows <= 0) {
            return result;
        }
        int cols = matrix[0].length;

        boolean[][] pacificGrid = new boolean[rows][cols];
        boolean[][] atlanticGrid = new boolean[rows][cols];

        for (int i = 0; i < rows; i++) {
            // 两条竖边
            dfs(matrix, rows, cols, pacificGrid, Integer.MIN_VALUE, i, 0);
            dfs(matrix, rows, cols, atlanticGrid, Integer.MIN_VALUE, i, cols - 1);
        }

        for (int i = 0; i < cols; i++) {
            //两条横边
            dfs(matrix, rows, cols, pacificGrid, Integer.MIN_VALUE, 0, i);
            dfs(matrix, rows, cols, atlanticGrid, Integer.MIN_VALUE, rows - 1, i);
        }



        //计算重合点
        for (int i = 0; i < rows; i++) {
            for (int j = 0; j < cols; j++) {
                if (pacificGrid[i][j] && atlanticGrid[i][j]) {
                    result.add(new int[]{i, j});
                }
            }
        }


        return result;
    }

    private void dfs(int[][] matrix, int rows, int cols, boolean[][] visitedGrid, int pre, int i, int j) {
        //越界 访问过 小于pre ,条件结束
        if (i < 0 || i >= rows || j < 0 || j >= cols || visitedGrid[i][j] || matrix[i][j] < pre) {
            return;
        }
        //表明访问过
        visitedGrid[i][j] = true;
        //四个方向
        dfs(matrix, rows, cols, visitedGrid, matrix[i][j], i, j + 1);
        dfs(matrix, rows, cols, visitedGrid, matrix[i][j], i, j - 1);
        dfs(matrix, rows, cols, visitedGrid, matrix[i][j], i + 1, j);
        dfs(matrix, rows, cols, visitedGrid, matrix[i][j], i - 1, j);

    }

转载于:https://my.oschina.net/mythss/blog/3012679

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值