多源BFS - 01矩阵

LCR 107. 01 矩阵

到最近的0的距离,对每一个非0的位置进行搜索,找到最短的距离即可,但如果对每一个非0的点都进行一次搜索的话,肯定是会超时的。这里可以考虑,将所有0点想象成一个0点(超级0)。然后找到所有1点到超级0的距离即可。

复制代码
class Solution {
public:
    int dx[4] = {0,0,1,-1};
    int dy[4] = {1,-1,0,0};

    vector<vector<int>> updateMatrix(vector<vector<int>>& mat) {
        int n = mat.size(), m = mat[0].size();
        vector<vector<int>> dist(n, vector<int>(m, 0));
        vector<vector<int>> st(n, vector<int>(m));
        queue<pair<int,int>> q;
        for (int i = 0; i < n; i++)
        {
            for (int j = 0; j < m; j++)
            {
                if (mat[i][j] == 0)
                {
                    st[i][j] = 1;
                    q.push({i, j});
                }
            }
        }

        while (!q.empty()) 
        {
            auto t = q.front();
            q.pop();
            int x = t.first;
            int y = t.second;
            for (int i = 0; i < 4; i++)
            {
                int xx = x + dx[i];
                int yy = y + dy[i];
                if (xx >= 0 && xx < n && yy >= 0 && yy < m && !st[xx][yy])
                {
                    st[xx][yy] = 1;
                    dist[xx][yy] = dist[x][y] + 1;
                    q.push({xx, yy});
                }
            }
            
        }
        return dist;
    }
};
相关推荐
0 0 02 小时前
CCF-CSP 39-2 水印检查(watermark)【C++】
c++·算法
plus4s3 小时前
2月15日(78,80,81题)
c++·算法·图论
能源系统预测和优化研究3 小时前
【原创改进代码】考虑碳交易与电网交互波动惩罚的共享储能电站优化配置与调度模型
算法·能源
935963 小时前
机考27 翻译21 单词14
c语言·数据结构·算法
回敲代码的猴子4 小时前
2月14日打卡
算法
blackicexs5 小时前
第四周第七天
算法
期末考复习中,蓝桥杯都没时间学了5 小时前
力扣刷题19
算法·leetcode·职场和发展
Renhao-Wan5 小时前
Java 算法实践(四):链表核心题型
java·数据结构·算法·链表
踩坑记录6 小时前
递归回溯本质
leetcode
zmzb01036 小时前
C++课后习题训练记录Day105
开发语言·c++·算法