백준 - 양 한마리... 양 두마리... 11123번
👏 문제 요약
양 무리(붙어있는 # 덩어리를 1로 센다. )의 수를 구하여라.
😘 key point
전형적인 dfs,bfs 문제이다. #모양이 있다면 bfs를 통해 방문했다는 표시를 남긴다면 양의 무리를 쉽게 구할 수 있을 것이다.
🤣 코드
from collections import deque
n = int(input())
dx = [-1,1,0,0]
dy = [0,0,1,-1]
def bfs(i,j):
q.append((i,j))
visited[i][j] = True
while q:
y,x = q.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if nx < 0 or ny < 0 or nx >= w or ny >= h:
continue
if graph[ny][nx] == '.':
continue
if visited[ny][nx] == False and graph[ny][nx] == '#':
visited[ny][nx] = True
q.append((ny,nx))
for _ in range(n):
h,w = map(int, input().split())
graph = [list(map(str, input())) for _ in range(h)]
visited = [[False] * w for _ in range(h)]
count = 0
q = deque()
for i in range(h):
for j in range(w):
if graph[i][j] == '#' and visited[i][j] == False:
bfs(i,j)
count += 1
print(count)
Author And Source
이 문제에 관하여(백준 - 양 한마리... 양 두마리... 11123번), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@turtle601/백준-양-한마리...-양-두마리...-11123번저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)