您的位置:首页 > 财经 > 产业 > 爱网课_一套网页ui设计多少钱_产品推广词_营销网站

爱网课_一套网页ui设计多少钱_产品推广词_营销网站

2024/12/28 13:33:37 来源:https://blog.csdn.net/chenziang1/article/details/144776975  浏览:    关键词:爱网课_一套网页ui设计多少钱_产品推广词_营销网站
爱网课_一套网页ui设计多少钱_产品推广词_营销网站

994. 腐烂的橘子

已解答

中等

相关标签

相关企业

在给定的 m x n 网格 grid 中,每个单元格可以有以下三个值之一:

  • 值 0 代表空单元格;
  • 值 1 代表新鲜橘子;
  • 值 2 代表腐烂的橘子。

每分钟,腐烂的橘子 周围 4 个方向上相邻 的新鲜橘子都会腐烂。

返回 直到单元格中没有新鲜橘子为止所必须经过的最小分钟数。如果不可能,返回 -1 。

class Solution(object):

    def orangesRotting(self, grid):

        """

        :type grid: List[List[int]]

        :rtype: int

        """

        # 腐烂时间,实际上就是广度优先搜索的深度

        # bfs主要用于解决最短路径的问题,这个最短时间也是一样的。

        # 找到 所有 的腐烂句子当做其实节点

        # depth = 0

        # 下一层+1

        queue = []

        depth=0

        fresh_num = 0

        m = len(grid)

        n = len(grid[0])

        for i in range(m):

            for j in range(n):

                if grid[i][j] == 2:

                    queue.append([i,j])

                if  grid[i][j] == 1:

                    fresh_num+=1

        def check(grid,x,y,queue):

            if x>=0 and x<m and y>=0 and y<n and grid[x][y]==1:

                queue.append([x,y])

                grid[x][y]=2

                return True

            else:

                return False

        while queue!=[]:

           

            count = len(queue)

            for i in range(count):

                tmp = queue[0]

                del queue[0]

                if check(grid,tmp[0]-1,tmp[1],queue):

                    fresh_num-=1

                if check(grid,tmp[0],tmp[1]-1,queue):

                    fresh_num-=1

                if check(grid,tmp[0]+1,tmp[1],queue):

                    fresh_num-=1

                if check(grid,tmp[0],tmp[1]+1,queue):

                    fresh_num-=1

            if len(queue):

                depth+=1

        if fresh_num>0:

            return -1

        else:

            return depth




这里使用bfs来做,把每一层抽象成腐烂句子就行了

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com