码迷,mamicode.com
首页 > 其他好文 > 详细

Island Perimeter Leetcode

时间:2017-06-11 10:05:05      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:sid   ima   square   ati   for   ica   static   sla   class   

You are given a map in form of a two-dimensional integer grid where 1 represents land and 0 represents water. Grid cells are connected horizontally/vertically (not diagonally). The grid is completely surrounded by water, and there is exactly one island (i.e., one or more connected land cells). The island doesn‘t have "lakes" (water inside that isn‘t connected to the water around the island). One cell is a square with side length 1. The grid is rectangular, width and height don‘t exceed 100. Determine the perimeter of the island.

Example:

[[0,1,0,0],
 [1,1,1,0],
 [0,1,0,0],
 [1,1,0,0]]

Answer: 16
Explanation: The perimeter is the 16 yellow stripes in the image below:
技术分享
 
这道题我是按照遍历,看看如果周边有1的话周长就减1的做法做的。
public class Solution {
    public int islandPerimeter(int[][] grid) {
        if (grid == null || grid.length == 0 || grid[0].length == 0) {
            return 0;
        }
        int count = 0;
        for (int i = 0; i < grid.length; i++) {
            for (int j = 0; j < grid[0].length; j++) {
                if (grid[i][j] == 1) {
                    count += 4 + isOne(grid, i, j);
                }
            }
        }
        return count;
    }
    private boolean inBound(int[][] grid, int x, int y) {
        if (x < 0 || x >= grid.length || y < 0 || y >= grid[0].length) {
            return false;
        }
        return true;
    }
    private int isOne(int[][] grid, int x, int y) {
        int count = 0;
        int[] dx = {0, 0, 1, -1};
        int[] dy = {1, -1, 0, 0};
        for (int i = 0; i < 4; i++) {
            int newX = x + dx[i];
            int newY = y + dy[i];
            if (inBound(grid, newX, newY) && grid[newX][newY] == 1) {
                count--;
            }
        }
        return count;
    }
}

做的可能有点复杂了,因为还有更好的做法。只要遍历右边和下边就可以了。最后结果是岛的个数 * 4 - 2 * 右边和下边的个数。因为右边和下边代表有两个岛要减一,所以乘2。

public class Solution {
    public int islandPerimeter(int[][] grid) {
        if (grid == null || grid.length == 0 || grid[0].length == 0) {
            return 0;
        }
        int count = 0;
        for (int i = 0; i < grid.length; i++) {
            for (int j = 0; j < grid[0].length; j++) {
                if (grid[i][j] == 1) {
                    count += 4;
                    if (i + 1 < grid.length && grid[i + 1][j] == 1) {
                        count -= 2;
                    }
                    if (j + 1 < grid[0].length && grid[i][j + 1] == 1) {
                        count -= 2;
                    }
                }
            }
        }
        return count;
    }
}

 

Island Perimeter Leetcode

标签:sid   ima   square   ati   for   ica   static   sla   class   

原文地址:http://www.cnblogs.com/aprilyang/p/6983712.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!