Skip to content

[Matrix] Max area of island problem solved DFS algorithm #6918

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
27210cf
Maximum area of island program added
kondekarshubham123 Oct 10, 2022
6cbfc10
Update matrix/max_area_of_island.py
kondekarshubham123 Oct 10, 2022
8e34544
Update matrix/max_area_of_island.py
kondekarshubham123 Oct 10, 2022
08decd3
Update matrix/max_area_of_island.py
kondekarshubham123 Oct 10, 2022
41e37a5
Review's comment resolved
kondekarshubham123 Oct 10, 2022
b36b08d
max area of island
kondekarshubham123 Oct 10, 2022
ce4e66c
PR Comments resolved
kondekarshubham123 Oct 11, 2022
26a1a3a
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 11, 2022
6fb6295
Test case fail fix
kondekarshubham123 Oct 11, 2022
c06bd9c
Grammer correction
kondekarshubham123 Oct 11, 2022
071d060
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 11, 2022
9855474
flake8 issue resolved
kondekarshubham123 Oct 11, 2022
e385611
some variable name fix
kondekarshubham123 Oct 12, 2022
34f92b5
Merge branch 'TheAlgorithms:master' into matrix/max_area_of_island
kondekarshubham123 Oct 12, 2022
8eb98e8
Update matrix/max_area_of_island.py
kondekarshubham123 Oct 17, 2022
9b5338b
Update matrix/max_area_of_island.py
kondekarshubham123 Oct 17, 2022
3af0a52
PR, comments resolved
kondekarshubham123 Oct 17, 2022
78aabac
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 17, 2022
094a4ce
Update matrix/max_area_of_island.py
kondekarshubham123 Oct 17, 2022
1f6464d
Update matrix/max_area_of_island.py
kondekarshubham123 Oct 17, 2022
5898399
PR, comments resolved
kondekarshubham123 Oct 17, 2022
7142723
Merge branch 'matrix/max_area_of_island' of https://github.com/kondek…
kondekarshubham123 Oct 17, 2022
cc0c96a
Update max_area_of_island.py
cclauss Oct 18, 2022
7bbdc55
[pre-commit.ci] auto fixes from pre-commit.com hooks
pre-commit-ci[bot] Oct 18, 2022
323047f
Typo
cclauss Oct 18, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
112 changes: 112 additions & 0 deletions matrix/max_area_of_island.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,112 @@
"""
Given an two dimensional binary matrix grid. An island is a group of 1's (representing
land) connected 4-directionally (horizontal or vertical.) You may assume all four edges
of the grid are surrounded by water. The area of an island is the number of cells with
a value 1 in the island. Return the maximum area of an island in a grid. If there is no
island, return 0.
"""

matrix = [
[0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0],
[0, 1, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0],
[0, 1, 0, 0, 1, 1, 0, 0, 1, 0, 1, 0, 0],
[0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 1, 1, 1, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0],
]


def is_safe(row: int, col: int, rows: int, cols: int) -> bool:
"""
Checking whether coordinate (row, col) is valid or not.

>>> is_safe(0, 0, 5, 5)
True
>>> is_safe(-1,-1, 5, 5)
False
"""
return 0 <= row < rows and 0 <= col < cols


def depth_first_search(row: int, col: int, seen: set, mat: list[list[int]]) -> int:
"""
Returns the current area of the island

>>> depth_first_search(0, 0, set(), matrix)
0
"""
rows = len(mat)
cols = len(mat[0])
if is_safe(row, col, rows, cols) and (row, col) not in seen and mat[row][col] == 1:
seen.add((row, col))
return (
1
+ depth_first_search(row + 1, col, seen, mat)
+ depth_first_search(row - 1, col, seen, mat)
+ depth_first_search(row, col + 1, seen, mat)
+ depth_first_search(row, col - 1, seen, mat)
)
else:
return 0


def find_max_area(mat: list[list[int]]) -> int:
"""
Finds the area of all islands and returns the maximum area.

>>> find_max_area(matrix)
6
"""
seen: set = set()

max_area = 0
for row, line in enumerate(mat):
for col, item in enumerate(line):
if item == 1 and (row, col) not in seen:
# Maximizing the area
max_area = max(max_area, depth_first_search(row, col, seen, mat))
return max_area


if __name__ == "__main__":
import doctest

print(find_max_area(matrix)) # Output -> 6

"""
Explanation:
We are allowed to move in four directions (horizontal or vertical) so the possible
in a matrix if we are at x and y position the possible moving are

Directions are [(x, y+1), (x, y-1), (x+1, y), (x-1, y)] but we need to take care of
boundary cases as well which are x and y can not be smaller than 0 and greater than
the number of rows and columns respectively.

Visualization
mat = [
[0,0,A,0,0,0,0,B,0,0,0,0,0],
[0,0,0,0,0,0,0,B,B,B,0,0,0],
[0,C,C,0,D,0,0,0,0,0,0,0,0],
[0,C,0,0,D,D,0,0,E,0,E,0,0],
[0,C,0,0,D,D,0,0,E,E,E,0,0],
[0,0,0,0,0,0,0,0,0,0,E,0,0],
[0,0,0,0,0,0,0,F,F,F,0,0,0],
[0,0,0,0,0,0,0,F,F,0,0,0,0]
]

For visualization, I have defined the connected island with letters
by observation, we can see that
A island is of area 1
B island is of area 4
C island is of area 4
D island is of area 5
E island is of area 6 and
F island is of area 5

it has 6 unique islands of mentioned areas
and the maximum of all of them is 6 so we return 6.
"""

doctest.testmod()