-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy path200.number-of-islands.py
54 lines (43 loc) · 1.4 KB
/
200.number-of-islands.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#
# @lc app=leetcode id=200 lang=python3
#
# [200] Number of Islands
#
# @lc code=start
# TAGS: Array, BFS, DFS, Union Find, Matrix
from typing import List
class Solution:
# DFS. Depth-First Search
# Time and Space: O(R*C)
def numIslands(self, grid: List[List[str]]) -> int:
R, C = len(grid), len(grid[0])
def sink_island(r, c):
grid[r][c] = "0"
for x, y in (r, c - 1), (r, c + 1), (r - 1, c), (r + 1, c):
if 0 <= x < R and 0 <= y < C and grid[x][y] == "1":
sink_island(x, y)
cnt = 0
for r in range(R): # O(R)
for c in range(C): # O(C)
if grid[r][c] == "1":
sink_island(r, c)
cnt += 1
return cnt
# BFS. Breath-First Search
# Time and Space: O(R*C)
def numIslands(self, grid: List[List[str]]) -> int:
R, C = len(grid), len(grid[0])
def sink_island(r, c):
queue = [(r, c)]
for x, y in queue:
if 0 <= x < R and 0 <= y < C and grid[x][y] == "1":
grid[x][y] = "0"
queue.extend([(x, y - 1), (x, y + 1), (x - 1, y), (x + 1, y)])
cnt = 0
for r in range(R):
for c in range(C):
if grid[r][c] == "1":
sink_island(r, c)
cnt += 1
return cnt
# @lc code=end