LintCode_897_海岛城市

问题描述

Given a matrix of size n x m, the elements in the matrix are 0、1、2. 0 for the sea, 1 for the island, and 2 for the city on the island(You can assume that 2 is built on 1, ie 2 also represents the island).
If two 1 are adjacent, then these two 1 belong to the same island. Find the number of islands with at least one city.

注意事项

  • 我们只考虑上下左右为相邻。
  • n <= 100,m <= 100。
  • 你可以假设矩阵的四个边都被海包围

样例

Given mat =
[
     [1,1,0,0,0],
     [0,1,0,0,1],
     [0,0,0,1,1],
     [0,0,0,0,0],
     [0,0,0,0,1]
]

, return 0.

Explanation:
There are 3 islands, but none of them contain cities.
Given mat =
[
     [1,1,0,0,0],
     [0,1,0,0,1],
     [0,0,2,1,2],
     [0,0,0,0,0],
     [0,0,0,0,2]
]

, return 2.

Explanation:
There are 3 islands, and two of them have cities.

分析

这道题和 LintCode_433 相似,如果找到海岛,向上下左右四个方向递归地找邻接的岛,然后把海岛覆盖成海水,如果找到的是城市,把flag置为true

代码

public class Solution {
    /**
     * @param grid: an integer matrix
     * @return: an integer 
     */
    public int numIslandCities(int[][] grid) {
        if(grid == null || grid.length == 0) {
            return 0;
        }
        final int row = grid.length;
        final int col = grid[0].length;
        int count = 0;
        for(int i = 0; i < row; i++) {
            for(int j = 0; j < col; j++) {
                if(grid[i][j] > 0) {
                    flag = false;
                    spread(grid, i, j);
                    if(flag) {
                        count++;
                    }
                }
            }
        }
        return count;
    }

    private boolean flag;

    private void spread(int[][] grid, int i, int j) {
        if(grid[i][j] == 2) {
            flag = true;
        }
        grid[i][j] = 0;
        //up
        if(i - 1 >= 0 && grid[i - 1][j] > 0) {
            spread(grid, i - 1, j);
        }
        //down
        if(i + 1 <= grid.length - 1 && grid[i + 1][j] > 0) {
            spread(grid, i + 1, j);
        }
        //left
        if(j - 1 >= 0 && grid[i][j - 1] > 0) {
            spread(grid, i, j - 1);
        }
        //right
        if(j + 1 <= grid[0].length - 1 && grid[i][j + 1] > 0) {
            spread(grid, i, j + 1);
        }
        return;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值