417. Pacific Atlantic Water Flow
Intuition
Giving you a 2-d metrix, you need to find all entries on the path to the "edge" of this metrix
Approach
Perform DFS on every entry on the edge of the metrix. And traverse the metrix to find all visited entries.
- Firstly, we creat a Pacific visited metrix and an Atlantic visit metrix.
- Secondly, we perform dfs on each edge and update our two visit metrices.
- For entries where water is able to flow to the Pacific Ocean, perform DFS on each entry of the top and left side.
- For entries where water is able to flow to the Atlantic Ocean, perform DFS on each entry of the bottom and right side.
- After we update our two visit metrices, we traverse them at same time to find entries whose rain water can flow to both the Pacific and Atlantic oceans.
Complexity
- Time complexity: \(O(R\times C)\), where \(R\) is the number of rows and \(C\) is the number of columns
- Space complexity: \(O(R\times C)\), as we creat two visit metrices.