|
| 1 | +package com.fishercoder.solutions; |
| 2 | + |
| 3 | +/** |
| 4 | + * 695. Max Area of Island |
| 5 | + * |
| 6 | + * Given a non-empty 2D array grid of 0's and 1's, an island is a group of 1's (representing land) |
| 7 | + * connected 4-directionally (horizontal or vertical.) |
| 8 | + * You may assume all four edges of the grid are surrounded by water. |
| 9 | + * Find the maximum area of an island in the given 2D array. (If there is no island, the maximum area is 0.) |
| 10 | +
|
| 11 | + Example 1: |
| 12 | +
|
| 13 | + [[0,0,1,0,0,0,0,1,0,0,0,0,0], |
| 14 | + [0,0,0,0,0,0,0,1,1,1,0,0,0], |
| 15 | + [0,1,1,0,1,0,0,0,0,0,0,0,0], |
| 16 | + [0,1,0,0,1,1,0,0,1,0,1,0,0], |
| 17 | + [0,1,0,0,1,1,0,0,1,1,1,0,0], |
| 18 | + [0,0,0,0,0,0,0,0,0,0,1,0,0], |
| 19 | + [0,0,0,0,0,0,0,1,1,1,0,0,0], |
| 20 | + [0,0,0,0,0,0,0,1,1,0,0,0,0]] |
| 21 | +
|
| 22 | + Given the above grid, return 6. Note the answer is not 11, because the island must be connected 4-directionally. |
| 23 | +
|
| 24 | + Example 2: |
| 25 | +
|
| 26 | + [[0,0,0,0,0,0,0,0]] |
| 27 | +
|
| 28 | + Given the above grid, return 0. |
| 29 | +
|
| 30 | + Note: The length of each dimension in the given grid does not exceed 50. |
| 31 | + */ |
| 32 | + |
| 33 | +public class _695 { |
| 34 | + |
| 35 | + public int maxAreaOfIsland(int[][] grid) { |
| 36 | + if (grid == null || grid.length == 0) { |
| 37 | + return 0; |
| 38 | + } |
| 39 | + int m = grid.length; |
| 40 | + int n = grid[0].length; |
| 41 | + int max = 0; |
| 42 | + for (int i = 0; i < m; i++) { |
| 43 | + for (int j = 0; j < n; j++) { |
| 44 | + if (grid[i][j] == 1) { |
| 45 | + int area = dfs(grid, i, j, m, n, 0); |
| 46 | + max = Math.max(area, max); |
| 47 | + } |
| 48 | + } |
| 49 | + } |
| 50 | + return max; |
| 51 | + } |
| 52 | + |
| 53 | + int dfs(int[][] grid, int i, int j, int m, int n, int area) { |
| 54 | + if (i < 0 || i >= m || j < 0 || j >= n || grid[i][j] == 0) { |
| 55 | + return area; |
| 56 | + } |
| 57 | + grid[i][j] = 0; |
| 58 | + area++; |
| 59 | + area = dfs(grid, i + 1, j, m, n, area); |
| 60 | + area = dfs(grid, i, j + 1, m, n, area); |
| 61 | + area = dfs(grid, i - 1, j, m, n, area); |
| 62 | + area = dfs(grid, i, j - 1, m, n, area); |
| 63 | + return area; |
| 64 | + } |
| 65 | + |
| 66 | +} |
0 commit comments