417. Pacific Atlantic Water Flow

题目

There is an m x n rectangular island that borders both the Pacific Ocean and Atlantic Ocean. The Pacific Ocean touches the island’s left and top edges, and the Atlantic Ocean touches the island’s right and bottom edges.

The island is partitioned into a grid of square cells. You are given an m x n integer matrix heights where heights[r][c] represents the height above sea level of the cell at coordinate (r, c).

The island receives a lot of rain, and the rain water can flow to neighboring cells directly north, south, east, and west if the neighboring cell’s height is less than or equal to the current cell’s height. Water can flow from any cell adjacent to an ocean into the ocean.

Return a 2D list of grid coordinates result where result[i] = [ri, ci] denotes that rain water can flow from cell (ri, ci) to both the Pacific and Atlantic oceans.

Example 1:
Input: heights = [[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]]
Output: [[0,4],[1,3],[1,4],[2,2],[3,0],[3,1],[4,0]]

Example 2:
Input: heights = [[2,1],[1,2]]
Output: [[0,0],[0,1],[1,0],[1,1]]

Constraints:
m == heights.length
n == heights[r].length
1 <= m, n <= 200
0 <= heights[r][c] <= 105

题解

dfs问题,需要注意从边缘向中间遍历更符合解题思路,也就是倒推水的流向。
先从四个边缘依次往中间推,最后分别判断是否能到达。

class Solution {
private:
    int m, n;
    vector<vector<int>> flowAoArr, flowPoArr;
    
public:
    bool inRect(int i, int j) {
        return (i >= 0 && i < m && j >= 0 && j < n);
    }

    void flow(int i, int j, vector<vector<int>>& heights, vector<vector<int>>& flowArr) {
        flowArr[i][j] = 1;
        int d[4][2] = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
        for (int k = 0; k < 4; k++) {
            int ni = i + d[k][0];
            int nj = j + d[k][1];
            if (inRect(ni, nj) && !flowArr[ni][nj] && heights[i][j] <= heights[ni][nj]) {
                flow(ni, nj, heights, flowArr);
            }
        }
    }

    vector<vector<int>> pacificAtlantic(vector<vector<int>>& heights) {
        vector<vector<int>> res;
        m = heights.size();
        n = heights[0].size();
        flowAoArr.assign(m, vector<int>(n, false));
        flowPoArr.assign(m, vector<int>(n, false));

        for (int i = 0; i < m; i++) {
            flow(i, 0, heights, flowPoArr);
            flow(i, n-1, heights, flowAoArr);
        }

        for (int j = 0; j < n; j++) {
            flow(0, j, heights, flowPoArr);
            flow(m-1, j, heights, flowAoArr);
        }

        for (int i = 0; i < m; i++) {
            for (int j = 0; j < n; j++) {
                if (flowPoArr[i][j] && flowAoArr[i][j]) {
                    res.push_back({i, j});
                }
            }
        }
        return res;
    }
};
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 1
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值