LeetCode 417. Pacific Atlantic Water Flow 题解

417. Pacific Atlantic Water Flow

 
  My Submissions
  • Total Accepted: 5223
  • Total Submissions: 16297
  • Difficulty: Medium
  • Contributors: Admin

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.
  3. 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).




解题思路:

         可以看到要想流入Pacific则必须要流到第一行或者第一列的某一处,同理要想流入Atlantic则必须要流到最后一行或者最后一列的某一处,同时可流到Pacific和Atlantic的即为本题的解。本题可以从第一行的所有点和第一列的所有点进行dfs,找到所有能流到第一行或者第一列的点,同时从最后一行和最后一列进行dfs,找到所有能留到最后一行或者最后一列的点。最后即可得到答案。

代码展示:

class Solution {
public:
    vector<vector<int> > tmp_mat;
    vector<vector<int> > pvis;
    vector<vector<int> > avis;
    vector<pair<int,int>> ans;
    void dfs(int i,int j,int who,int row,int col)
    {
        int dir[4][2]={{1,0},{-1,0},{0,1},{0,-1}};
        if(who==0)
        {
            pvis[i][j]=1;
            for(int k=0;k<4;k++)
            {
                int curi=i+dir[k][0];
                int curj=j+dir[k][1];
                if(curi>=0&&curi<row&&curj>=0&&curj<col&&tmp_mat[curi][curj]>=tmp_mat[i][j]&&!pvis[curi][curj])
                {
                    dfs(curi,curj,who,row,col);
                }
            }
        }
        else
        {
            avis[i][j]=1;
            for(int k=0;k<4;k++)
            {
                int curi=i+dir[k][0];
                int curj=j+dir[k][1];
                if(curi>=0&&curi<row&&curj>=0&&curj<col&&tmp_mat[curi][curj]>=tmp_mat[i][j]&&!avis[curi][curj])
                {
                    dfs(curi,curj,who,row,col);
                }
            }
        }

    }
    vector<pair<int, int>> pacificAtlantic(vector<vector<int>>& matrix) {
        int row=matrix.size();
        tmp_mat= matrix;
        
        if(!row) return ans;
        int col=matrix[0].size();
        vector<int> tmp(col,0);
        for(int i=0;i<row;i++)
        {   
            pvis.push_back(tmp);
            avis.push_back(tmp);
        }
        for(int j=0;j<col;j++)
        {
            if(!pvis[0][j]) dfs(0,j,0,row,col); 
        }
        for(int i=0;i<row;i++)
        {
            if(!pvis[i][0]) dfs(i,0,0,row,col); 
        }
        for(int j=0;j<col;j++)
        {
            if(!avis[row-1][j]) dfs(row-1,j,1,row,col);
        }
        for(int i=0;i<row;i++)
        {
            if(!avis[i][col-1]) dfs(i,col-1,1,row,col);
        }
        for(int i=0;i<row;i++)
        {
            for(int j=0;j<col;j++)
            {
                if(avis[i][j]&&pvis[i][j])
                {
                    ans.push_back(make_pair(i,j));
                }
            }
        }
        return ans;
        
        
        
    }
};



评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值