224. 단지번호붙이기
1.Python
정해
import sys
from collections import deque
input = sys.stdin.readline
n = int(input())
graph = [list(input().rstrip()) for _ in range(n)]
count = []
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]
def bfs(x, y):
q = deque()
q.append((x, y))
graph[x][y] = '0'
cnt = 0
while q:
x, y = q.popleft()
cnt += 1
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < n and graph[nx][ny] == '1':
q.append((nx, ny))
graph[nx][ny] = '0'
count.append(cnt)
result = 0
for i in range(n):
for j in range(n):
if graph[i][j] == '1':
bfs(i, j)
result += 1
print(result)
count.sort()
for a in count:
print(a)
- bfs 처음에
graph[x][y] = '0'
을 빼먹었었다..!!!
틀렸습니다
import sys
from collections import deque
input = sys.stdin.readline
n = int(input())
graph = [list(input().rstrip()) for _ in range(n)]
count = []
dx = [-1, 1, 0, 0]
dy = [0, 0, -1, 1]
def bfs(x, y):
q = deque()
q.append((x, y))
cnt = 0
while q:
x, y = q.popleft()
for i in range(4):
nx = x + dx[i]
ny = y + dy[i]
if 0 <= nx < n and 0 <= ny < n and graph[nx][ny] == '1':
q.append((nx, ny))
graph[nx][ny] = '0'
cnt += 1
count.append(cnt)
result = 0
for i in range(n):
for j in range(n):
if graph[i][j] == '1':
bfs(i, j)
result += 1
print(result)
count.sort()
for a in count:
print(a)
Author And Source
이 문제에 관하여(224. 단지번호붙이기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@corone_hi/224.-단지번호붙이기저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)