[백준 알고리즘] 4963번 섬의 개수, 파이썬(python)
글 작성자: 망고좋아
반응형
4963, 섬의 개수
📁 문제 출처
💡 생각
- 입력은 while문으로 계속 받기
- 대신 다른 bfs문제와 달리 대각선으로도 이동이 가능하기 때문에 기존 상하좌우에서 4가지 경로를 더 주었다.
dx = [0, 0, 1, -1, 1, -1, 1, -1]
,dy = [1, -1, 0, 0, 1, -1, -1, 1]
🛠 나의 코드
from collections import deque
import sys
input = sys.stdin.readline
dx = [0, 0, 1, -1, 1, -1, 1, -1]
dy = [1, -1, 0, 0, 1, -1, -1, 1]
def bfs(graph, a, b):
queue = deque()
graph[a][b] = 0
queue.append((a, b))
while queue:
x, y = queue.popleft()
for i in range(8):
nx = x + dx[i]
ny = y + dy[i]
if nx < 0 or nx >= h or ny < 0 or ny >= w:
continue
if graph[nx][ny] == 1:
graph[nx][ny] = 0
queue.append((nx, ny))
while True:
w, h = map(int, input().split())
graph = []
if w == 0 and h == 0:
break
for i in range(h):
graph.append(list(map(int, input().split())))
ans = 0
for i in range(h):
for j in range(w):
if graph[i][j] == 1:
bfs(graph, i, j)
ans += 1
print(ans)
반응형
'알고리즘 > 백준' 카테고리의 다른 글
[백준 알고리즘] 2583번 영역 구하기, 파이썬(python) (0) | 2021.08.24 |
---|---|
[백준 알고리즘] 7562번 나이트의 이동, 파이썬(python) (0) | 2021.08.24 |
[백준 알고리즘] 11724번 연결 요소의 개수, 파이썬(python) (0) | 2021.08.21 |
[백준 알고리즘] 2178번 미로탐색, 파이썬(python) (0) | 2021.08.21 |
[백준 알고리즘] 1926번 그림, 파이썬(python) (0) | 2021.08.20 |
댓글
이 글 공유하기
다른 글
-
[백준 알고리즘] 2583번 영역 구하기, 파이썬(python)
[백준 알고리즘] 2583번 영역 구하기, 파이썬(python)
2021.08.24 -
[백준 알고리즘] 7562번 나이트의 이동, 파이썬(python)
[백준 알고리즘] 7562번 나이트의 이동, 파이썬(python)
2021.08.24 -
[백준 알고리즘] 11724번 연결 요소의 개수, 파이썬(python)
[백준 알고리즘] 11724번 연결 요소의 개수, 파이썬(python)
2021.08.21 -
[백준 알고리즘] 2178번 미로탐색, 파이썬(python)
[백준 알고리즘] 2178번 미로탐색, 파이썬(python)
2021.08.21