Golang | Leetcode Golang题解之第417题太平洋大西洋水流问题

题目:

题解:

Go 复制代码
type pair struct{ x, y int }
var dirs = []pair{{-1, 0}, {1, 0}, {0, -1}, {0, 1}}

func pacificAtlantic(heights [][]int) (ans [][]int) {
    m, n := len(heights), len(heights[0])
    pacific := make([][]bool, m)
    atlantic := make([][]bool, m)
    for i := range pacific {
        pacific[i] = make([]bool, n)
        atlantic[i] = make([]bool, n)
    }

    bfs := func(x, y int, ocean [][]bool) {
        if ocean[x][y] {
            return
        }
        ocean[x][y] = true
        q := []pair{{x, y}}
        for len(q) > 0 {
            p := q[0]
            q = q[1:]
            for _, d := range dirs {
                if x, y := p.x+d.x, p.y+d.y; 0 <= x && x < m && 0 <= y && y < n && !ocean[x][y] && heights[x][y] >= heights[p.x][p.y] {
                    ocean[x][y] = true
                    q = append(q, pair{x, y})
                }
            }
        }
    }
    for i := 0; i < m; i++ {
        bfs(i, 0, pacific)
    }
    for j := 1; j < n; j++ {
        bfs(0, j, pacific)
    }
    for i := 0; i < m; i++ {
        bfs(i, n-1, atlantic)
    }
    for j := 0; j < n-1; j++ {
        bfs(m-1, j, atlantic)
    }

    for i, row := range pacific {
        for j, ok := range row {
            if ok && atlantic[i][j] {
                ans = append(ans, []int{i, j})
            }
        }
    }
    return
}
相关推荐
褚翾澜31 分钟前
Haskell语言的NoSQL
开发语言·后端·golang
luckyme_34 分钟前
leetcode-代码随想录-哈希表-有效的字母异位词
算法·leetcode·散列表
luckyme_1 小时前
leetcode 代码随想录 数组-区间和
c++·算法·leetcode
草海桐1 小时前
golang 的github.com/dgrijalva/jwt-go包
golang·jwt·jwt-go
jyyyx的算法博客2 小时前
Leetcode 857 -- 贪心 | 数学
算法·leetcode·贪心·嗜血
霍徵琅2 小时前
Groovy语言的物联网
开发语言·后端·golang
luckyme_3 小时前
leetcode-代码随想录-哈希表-哈希理论基础
leetcode·哈希算法·散列表
申雪菱3 小时前
Scheme语言的数据挖掘
开发语言·后端·golang
欧宸雅3 小时前
HTML语言的空值合并
开发语言·后端·golang
方瑾瑜4 小时前
Visual Basic语言的物联网
开发语言·后端·golang