zoukankan      html  css  js  c++  java
  • 1905. Count Sub Islands

    You are given two m x n binary matrices grid1 and grid2 containing only 0's (representing water) and 1's (representing land). An island is a group of 1's connected 4-directionally (horizontal or vertical). Any cells outside of the grid are considered water cells.

    An island in grid2 is considered a sub-island if there is an island in grid1 that contains all the cells that make up this island in grid2.

    Return the number of islands in grid2 that are considered sub-islands.

    Example 1:

    Input: grid1 = [[1,1,1,0,0],[0,1,1,1,1],[0,0,0,0,0],[1,0,0,0,0],[1,1,0,1,1]], grid2 = [[1,1,1,0,0],[0,0,1,1,1],[0,1,0,0,0],[1,0,1,1,0],[0,1,0,1,0]]
    Output: 3
    Explanation: In the picture above, the grid on the left is grid1 and the grid on the right is grid2.
    The 1s colored red in grid2 are those considered to be part of a sub-island. There are three sub-islands.
    

    Example 2:

    Input: grid1 = [[1,0,1,0,1],[1,1,1,1,1],[0,0,0,0,0],[1,1,1,1,1],[1,0,1,0,1]], grid2 = [[0,0,0,0,0],[1,1,1,1,1],[0,1,0,1,0],[0,1,0,1,0],[1,0,0,0,1]]
    Output: 2 
    Explanation: In the picture above, the grid on the left is grid1 and the grid on the right is grid2.
    The 1s colored red in grid2 are those considered to be part of a sub-island. There are two sub-islands.

    class Solution {
        public int countSubIslands(int[][] grid1, int[][] grid2) {
            int res = 0;
            for(int i = 0; i < grid1.length; i++) {
                for(int j = 0; j < grid1[0].length; j++) {
                    if(grid2[i][j] == 1) {
                        if(help(grid1, grid2, i, j)) res++;
                    }
                }
            }
            return res;
        }
        
        public boolean help(int[][] grid1, int[][] grid2, int i, int j) {
            if(i < 0 || i >= grid1.length || j < 0 || j >= grid1[0].length ) return true;
            if(grid2[i][j] == 0) return true;
            if(grid1[i][j] != grid2[i][j]) return false;
            
            grid2[i][j] = 0;
            boolean flag = true;
            if(!help(grid1, grid2, i + 1, j)) flag = false;
            if(!help(grid1, grid2, i - 1, j)) flag = false;
            if(!help(grid1, grid2, i, j + 1)) flag = false;
            if(!help(grid1, grid2, i, j - 1)) flag = false;
            return flag;
        }
    }

    吃一堑,长一智,老老实实四个方向一个一个来。注意边界条件返回true 还是false

  • 相关阅读:
    线性变换
    施密特正交化
    春有它的记忆,秋有它的情怀
    最美的动作其实只需要嘴角上扬-微笑
    pomotime_v1.7.2 番茄软件完全教程
    NGUI 之 不为人知的 NGUITools
    Unity3D 开发 之 加载Android应用的环境
    Unity3D 开发 之 JDK安装与环境变量配置
    Tesseract 对验证码的识别原理和实现步骤
    sizeof_and_strlen 的区别
  • 原文地址:https://www.cnblogs.com/wentiliangkaihua/p/15018383.html
Copyright © 2011-2022 走看看