-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path0417.PacificAtlanticWaterFlow.go
45 lines (38 loc) · 1.26 KB
/
0417.PacificAtlanticWaterFlow.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package blind75
func pacificAtlantic(heights [][]int) [][]int {
m, n := len(heights), len(heights[0])
pacific, atlantic := make([][]bool, m), make([][]bool, m)
for i := range heights {
pacific[i] = make([]bool, n)
atlantic[i] = make([]bool, n)
}
for r := range heights {
dfsPacificAtlantic(r, 0, heights[r][0], pacific, heights)
dfsPacificAtlantic(r, n-1, heights[r][n-1], atlantic, heights)
}
for c := range heights[0] {
dfsPacificAtlantic(0, c, heights[0][c], pacific, heights)
dfsPacificAtlantic(m-1, c, heights[m-1][c], atlantic, heights)
}
waterFlow := [][]int{}
for r := range heights {
for c := range heights[r] {
if pacific[r][c] && atlantic[r][c] {
waterFlow = append(waterFlow, []int{r, c})
}
}
}
return waterFlow
}
func dfsPacificAtlantic(r, c, prev int, visited [][]bool, heights [][]int) {
rowInbound := 0 <= r && r < len(heights)
colInbound := 0 <= c && c < len(heights[0])
if !rowInbound || !colInbound || visited[r][c] || heights[r][c] < prev {
return
}
visited[r][c] = true
dfsPacificAtlantic(r+1, c, heights[r][c], visited, heights)
dfsPacificAtlantic(r-1, c, heights[r][c], visited, heights)
dfsPacificAtlantic(r, c+1, heights[r][c], visited, heights)
dfsPacificAtlantic(r, c-1, heights[r][c], visited, heights)
}