반응형
250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- final #java #자바 #안드로이드
- dfs #bfs #트리구조 #이진트리 #leetcode #python #파이썬
- python #백준 #9375 #패션왕 #신해빈
- leetcode #subsets #dfs #itertools #python
- python #백준 #2580 #스도쿠 #dfs #백트래킹
- AsyncTask #doinbackground #스레드 #thread #android #안드로이드
- handler #looper #thread #runnable #핸들러 #루퍼 #스레드 #러너블
- dfs #leetcode #python
- 아스테리스크 #Asterisk #파이썬
- dfs #bfs #leetcode #python
- 코틀린 #Do it #깡샘 #안드로이드
- 파이썬 #zip
- dfs #bfs #이진트리 #파이썬 #리트코드
- 리트코드 #팰린드롬 #파이썬
- dfs #bfs #트리구조 #이진트리 #leetcode #파이썬 #python
- dfs #그래프 #graph #python #leetcode #course #schedule
- 해시테이블 #heapq #파이썬 #리트코드 #알고리즘
- gcd #최대공약수 #백준 #2981 #검문
- dfs #python #leetcode
- leetcode #python #dfs #재귀
- dfs #이진트리 #트리구조 #직렬화 #역직렬화 #파이썬 #리트코드 #leetcode #python
- 2004 #조합 0의 개수 #백준
- 백준 #파이썬 #bfs #백트래킹 #1697 #숨바꼭질
- 다익스트라 #알고리즘 #bfs #그리디 #다이나믹프로그래밍 #leetcode #python
- exoplayer #mediaplayer #엑소플레이어 #안드로이드 #android
- dfs #python #leetcode #combination
- dfs #leetcode #python #graph #그래프
- 다익스트라 #dijkstra #leetcode #파이썬 #python #algorithm #787
- context #android #getApplicationContext #activity #생명주기 #lifecycle
- Python #leetcode #dfs #그래프 #백트래킹
Archives
- Today
- Total
멋진 개발자가 되고 싶다
[LeetCode/Python] 200. 섬의 개수(Number of Islands) 본문
728x90
반응형
1을 육지로, 0을 물로 가정한 2D 그리드 맵이 주어졌을 때, 섬의 개수를 계산하라.
(연결되어 있는 1의 덩어리의 개수를 구하라.)
Example:
Input: grid =
[ ["1", "1", "1", "1", "0"],
["1", "1", "0", "1", "0"],
["1", "1", "0", "0", "0"],
["0", "0", "0", "0", "0"] ]
Output: 1
** 깔끔한 답안 **
1. DFS로 그래프 탐색
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
class Solution:
def numIslands(self, grid: List[List[str]]) -> int:
def dfs(i, j):
# 더 이상 땅이 아닌 경우 종료
if i < 0 or i >= len(grid) or \
j < 0 or j >= len(grid[0]) or \
grid[i][j] != '1':
return
grid[i][j] = 0
# 동서남북 탐색
dfs(i - 1, j)
dfs(i, j - 1)
dfs(i + 1, j)
dfs(i, j + 1)
count = 0
for i in range(len(grid)):
for j in range(len(grid[0])):
if grid[i][j] == "1":
dfs(i, j)
# 모든 육지 탐색 후 카운트 1 증가
count += 1
return count
|
cs |
해설:
그래프 모양은 아니지만 그래프 형으로 변환하여 풀 수 있는 문제이다.
동서남북이 모두 연결된 그래프라 가정하고 육지가 아니면 return을 이용하여 빠져나온다.
이 코드에서는 grid를 dfs 함수에서도 바로 쓸 수 있게 하기 위해 함수를 중첩하였다.
728x90
반응형
'Algorithm Study > leetcode' 카테고리의 다른 글
[LeetCode/Python] 1260. DFS와 BFS (0) | 2021.07.25 |
---|---|
[LeetCode/Python] 17. Letter Combinations of a Phone Number (0) | 2021.07.24 |
[LeetCode/Python] 347. 상위 K 빈도 요소(Top K Frequent Elements) (0) | 2021.07.18 |
[LeetCode/Python] 3. 중복 문자 없는 가장 긴 문자열(Longest Substring Without Repeating Charactors) (0) | 2021.07.18 |
[LeetCode,Python] 771. 보석과 돌(Jewels and Stones) (0) | 2021.07.17 |