463. Island Perimeter
https://leetcode.com/problems/island-perimeter/description/
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:
Thoughts
由01构成的矩阵,问1所组成的图形的周长。从左上角依次遍历,当是1先加四条边,再检查右边/下边是否为1,是就减2,把这两个块增加的两条边删去。
Code
Analysis
时间复杂度O(MN).
Last updated
Was this helpful?