407. 接雨水 II (优先队列)

Posted Harris-H

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了407. 接雨水 II (优先队列)相关的知识,希望对你有一定的参考价值。

407. 接雨水 II (优先队列)

考虑从外往内填,显然最外层不能接水,我们用一个优先队列储存当前外层块,每次遍历四周,看是否有比他小的,然后计算贡献,然后标记,丢进队列。

注意特判当 n < 3 ∣ ∣ m < 3 n<3||m<3 n<3m<3 显然无解。

typedef pair<int,int> pii;

class Solution {
public:
    int trapRainWater(vector<vector<int>>& heightMap) {  
        if (heightMap.size() <= 2 || heightMap[0].size() <= 2) {
            return 0;
        }  
        int m = heightMap.size();
        int n = heightMap[0].size();
        priority_queue<pii, vector<pii>, greater<pii>> pq;
        vector<vector<bool>> visit(m, vector<bool>(n, false));
        for (int i = 0; i < m; ++i) {
            for (int j = 0; j < n; ++j) {
                if (i == 0 || i == m - 1 || j == 0 || j == n - 1) {
                    pq.push({heightMap[i][j], i * n + j});
                    visit[i][j] = true;
                }
            }
        }

        int res = 0;
        int dirs[] = {-1, 0, 1, 0, -1};
        while (!pq.empty()) {
            pii curr = pq.top();
            pq.pop();            
            for (int k = 0; k < 4; ++k) {
                int nx = curr.second / n + dirs[k];
                int ny = curr.second % n + dirs[k + 1];
                if( nx >= 0 && nx < m && ny >= 0 && ny < n && !visit[nx][ny]) {
                    if (heightMap[nx][ny] < curr.first) {
                        res += curr.first - heightMap[nx][ny]; 
                    }
                    visit[nx][ny] = true;
                    pq.push({max(heightMap[nx][ny], curr.first), nx * n + ny});
                }
            }
        }
        
        return res;
    }
};

以上是关于407. 接雨水 II (优先队列)的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 407 接雨水 II[最小堆] HERODING的LeetCode之路

LeetCode 575. 分糖果 / 237. 删除链表中的节点 / 407. 接雨水 II

Leetcode 407.接雨水

364. 接雨水 II

2021-07-15:接雨水 II。给你一个 m x n 的矩阵,其中的值均为非负整数,代表二维高度图每个单元的高度,请计算图中形状最多能接多少体积的雨水。

最强解析面试题:接雨水...