728x90
반응형
문제
https://www.acmicpc.net/problem/4963
4963번: 섬의 개수
입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스의 첫째 줄에는 지도의 너비 w와 높이 h가 주어진다. w와 h는 50보다 작거나 같은 양의 정수이다. 둘째 줄부터 h개 줄에는 지도
www.acmicpc.net
문제 풀이
import collections
import sys
dx = [-1, 0, 1, 1, 1, 0, -1, -1]
dy = [-1, -1, -1, 0, 1, 1, 1, 0]
def bfs(graph, y, x):
graph[y][x] = 0
queue = collections.deque([(y, x)])
while queue:
yy, xx = queue.popleft()
for i in range(8):
nx = xx + dx[i]
ny = yy + dy[i]
if nx < 0 or nx >= w or ny < 0 or ny >= h:
continue
if graph[ny][nx] == 1:
graph[ny][nx] = 0
queue.append((ny, nx))
while True:
w, h = map(int, sys.stdin.readline().split())
if w == 0 and h == 0:
break
maps = [list(map(int, sys.stdin.readline().split())) for _ in range(h)]
count = 0
for y in range(h):
for x in range(w):
if maps[y][x] == 1:
bfs(maps, y, x)
count += 1
print(count)
728x90
반응형