我是靠谱客的博主 清爽战斗机,最近开发中收集的这篇文章主要介绍海洋陆地地图,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

from collections import deque
class Solution:
    def maxDistance(self, grid):
        queue = deque()
        row = len(grid)
        col = len(grid[0])
        res = [[0 for _ in range(row)]for _ in range(col)]
        visited = [[False for _ in range(row)]for _ in range(col)]
        dectection = [[1,0],[-1,0],[0,1],[0,-1]]
        for i in range(row):
            for j in range(col):
                if grid[i][j] == 1:
                    queue.append((i,j))
                    visited[i][j] = True
        if len(queue) == 0 or len(queue) == col*row:
            return -1
        while queue:
            i,j = queue.popleft()
            for index in dectection:
                new_x = index[0] + i
                new_y = index[1] + j
                if 0<= new_x < row and 0<= new_y <col and visited[new_x][new_y] != True:
                    res[new_x][new_y] = res[i][j] + 1
                    queue.append((new_x,new_y))
                    visited[new_x][new_y] = True
        print(res)
        max1 = 0
        for i in range(row):
            for j in range(col):
                max1 = max(res[i][j],max1)
        return max1

最后

以上就是清爽战斗机为你收集整理的海洋陆地地图的全部内容,希望文章能够帮你解决海洋陆地地图所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(51)

评论列表共有 0 条评论

立即
投稿
返回
顶部