994. Rotting Oranges/BFS模板题

题目描述

In a given grid, each cell can have one of three values:

  • the value 0 representing an empty cell;
  • the value 1 representing a fresh orange;
  • the value 2 representing a rotten orange.

Every minute, any fresh orange that is adjacent (4-directionally) to a rotten orange becomes rotten.

Return the minimum number of minutes that must elapse until no cell has a fresh orange.  If this is impossible, return -1 instead.

Example 1:

Input: [[2,1,1],[1,1,0],[0,1,1]]
Output: 4

Example 2:

Input: [[2,1,1],[0,1,1],[1,0,1]]
Output: -1
Explanation:  The orange in the bottom left corner (row 2, column 0) is never rotten, because rotting only happens 4-directionally.

Example 3:

Input: [[0,2]]
Output: 0
Explanation:  Since there are already no fresh oranges at minute 0, the answer is just 0.

Note:

  1. 1 <= grid.length <= 10
  2. 1 <= grid[0].length <= 10
  3. grid[i][j] is only 0, 1, or 2.

解析

这里不需要另外设一个inq数组来标记是否入过队,只需要将入队的位置的值设为2即可。

扫描二维码关注公众号,回复: 9602485 查看本文章
struct node{
    int x,y;
};
class Solution {
public:
    int orangesRotting(vector<vector<int>>& grid) {
        int m=grid.size(),n=grid[0].size(),num=0;
        queue<node> q;
        for(int i=0;i<m;i++){
            for(int j=0;j<n;j++){
                if(grid[i][j]==2) q.push({i,j});
                if(grid[i][j]==1) num++;  //好橘子个数
            }
        }
        int dx[4]={1,0,-1,0},dy[4]={0,1,0,-1};  //增量数组     
        int ans=0;
        while(!q.empty()&&num>0){
            ans++;
            int cnt=q.size();
            while(cnt--){  //逐层的BFS
                node now=q.front();
                q.pop();
                for(int i=0;i<4;i++){
                    int newx=now.x+dx[i],newy=now.y+dy[i];
                    if(newx>=0&&newx<m&&newy>=0&&newy<n&&grid[newx][newy]==1){
                        grid[newx][newy]=2;num--;q.push({newx,newy});
                    }
                }
            }            
        }
        return num>0?-1:ans;  //如果q.empty()满足了,跳出循环,但num>0说明无法全部腐烂
    }
};
发布了123 篇原创文章 · 获赞 11 · 访问量 5539

猜你喜欢

转载自blog.csdn.net/weixin_43590232/article/details/104649415
今日推荐