close

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:

 

 

#include <iostream>
#include <vector>
using namespace std;

int islandPerimeter(vector<vector<int>> &grid)
{
    int n = grid.size();
    int m = grid[0].size();
    if (n == 0) return 0;
    int ans = 0;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < m; j++) {
            if (grid[i][j] == 1)
            {
                ans += 4;
                if (i > 0 && grid[i - 1][j] == 1) ans -= 2;
                if (j > 0 && grid[i][j - 1] == 1) ans -= 2;
            }
        }
    }
    return ans;
};
int main()
{
    vector<int>a;
    a.push_back(0);
    a.push_back(1);
    a.push_back(0);
    a.push_back(0);

    vector<int>b;
    b.push_back(1);
    b.push_back(1);
    b.push_back(1);
    b.push_back(0);

    vector<int>c;
    c.push_back(0);
    c.push_back(1);
    c.push_back(0);
    c.push_back(0);

    vector<int>d;
    d.push_back(1);
    d.push_back(1);
    d.push_back(0);
    d.push_back(0);

    vector<vector<int>>Input;
    Input.push_back(a);
    Input.push_back(b);
    Input.push_back(c);
    Input.push_back(d);

    cout<<"line count : " << islandPerimeter(Input) << endl;

}

 

 

​​​​​​​

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 Eric 的頭像
    Eric

    一個小小工程師的心情抒發天地

    Eric 發表在 痞客邦 留言(0) 人氣()