#695 Max Area of Island

Description

You are given an m x n binary matrix grid. An island is a group of 1’s (representing land) connected 4-directionally (horizontal or vertical.) You may assume all four edges of the grid are surrounded by water.

The area of an island is the number of cells with a value 1 in the island.

Return the maximum area of an island in grid. If there is no island, return 0.

Examples

Example 1:
在这里插入图片描述

Input: grid = [[0,0,1,0,0,0,0,1,0,0,0,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,1,1,0,1,0,0,0,0,0,0,0,0],[0,1,0,0,1,1,0,0,1,0,1,0,0],[0,1,0,0,1,1,0,0,1,1,1,0,0],[0,0,0,0,0,0,0,0,0,0,1,0,0],[0,0,0,0,0,0,0,1,1,1,0,0,0],[0,0,0,0,0,0,0,1,1,0,0,0,0]]
Output: 6
Explanation: The answer is not 11, because the island must be connected 4-directionally.

Example 2:

Input: grid = [[0,0,0,0,0,0,0,0]]
Output: 0

Constraints:

m == grid.length
n == grid[i].length
1 <= m, n <= 50
grid[i][j] is either 0 or 1.

思路

深搜,好像也没什么说的

代码

class Solution {
    int[][] grids;
    public int countSize(int i, int j, int count) {
        grids[i][j] = 0;
        count += 1;
        
        if (i + 1 < grids.length && grids[i + 1][j] == 1)
            count = countSize(i + 1, j, count);
        if (i - 1 >= 0 && grids[i - 1][j] == 1)
            count = countSize(i - 1, j, count);
        if (j + 1 < grids[0].length && grids[i][j + 1] == 1)
            count = countSize(i, j + 1, count);
        if (j - 1 >= 0 && grids[i][j - 1] == 1)
            count = countSize(i, j - 1, count);
        
        return count;
    }
    public int maxAreaOfIsland(int[][] grid) {
        grids = new int[grid.length][grid[0].length];
        grids = grid;
        int max = 0;
        // 遍历整张图表
        for (int i = 0; i < grid.length; i++) {
            for (int j = 0; j < grid[0].length; j++) {
                // 进岛了
                if (grids[i][j] == 1) {
                    max = Math.max(max, countSize(i, j, 0));
                }
            }
        }
        return max;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值