鱼C论坛

 找回密码
 立即注册
查看: 1227|回复: 0

[技术交流] C++刷leetcode(1162. 地图分析)【广度优先搜索】【图】

[复制链接]
发表于 2020-6-2 12:06:04 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
题目描述:
你现在手里有一份大小为 N x N 的「地图」(网格) grid,上面的每个「区域」(单元格)都用 0 和 1 标记好了。其中 0 代表海洋,1 代表陆地,请你找出一个海洋区域,这个海洋区域到离它最近的陆地区域的距离是最大的。

我们这里说的距离是「曼哈顿距离」( Manhattan Distance):(x0, y0) 和 (x1, y1) 这两个区域之间的距离是 |x0 - x1| + |y0 - y1| 。

如果我们的地图上只有陆地或者海洋,请返回 -1。

 

示例 1:



输入:[[1,0,1],[0,0,0],[1,0,1]]
输出:2
解释: 
海洋区域 (1, 1) 和所有陆地区域之间的距离都达到最大,最大距离为 2。
示例 2:



输入:[[1,0,0],[0,0,0],[0,0,0]]
输出:4
解释: 
海洋区域 (2, 2) 和所有陆地区域之间的距离都达到最大,最大距离为 4。
 

提示:

1 <= grid.length == grid[0].length <= 100
grid[i][j] 不是 0 就是 1

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/as-far-from-land-as-possible
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

class Solution {
public:
    int maxDistance(vector<vector<int>>& grid) {
        //广度优先搜索
        //构建方向矩阵
        vector<vector<int> > direct = {{1, 0}, {-1, 0}, {0, 1}, {0, -1}};
        //构建queue
        int len1 = grid.size(), len2 = grid[0].size();
        queue<pair<int, int> > temp;
        for(int i = 0; i < len1; i++){
            for(int j = 0; j < len2; j++){
                if(grid[i][j] == 1){
                    temp.push(make_pair(i, j));
                    grid[i][j] = 2;
                }
            }
        }
        int res = -1;
        while(!temp.empty()){
            int len = temp.size();
            res++;
            for(int i = 0; i < len; i++){
                pair<int, int> store = temp.front();
                temp.pop();
                for(auto cha : direct){
                    int x = store.first + cha[0];
                    int y = store.second + cha[1];
                    if(x < 0 || y < 0 || x >= len1 || y >= len2 || grid[x][y] == 2) continue;
                    grid[x][y] = 2;
                    temp.push(make_pair(x, y));
                }
            }
        }
        if(res == 0)return -1;
        return res;
    }
};


参考链接:https://leetcode-cn.com/problems ... de-bfs-by-sweetiee/

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2025-1-13 17:41

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表