-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Silver I] Title: 단지번호붙이기, Time: 64 ms, Memory: 34072 KB -BaekjoonHub
- Loading branch information
Showing
2 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# [Silver I] 단지번호붙이기 - 2667 | ||
|
||
[문제 링크](https://www.acmicpc.net/problem/2667) | ||
|
||
### 성능 요약 | ||
|
||
메모리: 34072 KB, 시간: 64 ms | ||
|
||
### 분류 | ||
|
||
너비 우선 탐색, 깊이 우선 탐색, 그래프 이론, 그래프 탐색 | ||
|
||
### 제출 일자 | ||
|
||
2024년 4월 1일 22:57:40 | ||
|
||
### 문제 설명 | ||
|
||
<p><그림 1>과 같이 정사각형 모양의 지도가 있다. 1은 집이 있는 곳을, 0은 집이 없는 곳을 나타낸다. 철수는 이 지도를 가지고 연결된 집의 모임인 단지를 정의하고, 단지에 번호를 붙이려 한다. 여기서 연결되었다는 것은 어떤 집이 좌우, 혹은 아래위로 다른 집이 있는 경우를 말한다. 대각선상에 집이 있는 경우는 연결된 것이 아니다. <그림 2>는 <그림 1>을 단지별로 번호를 붙인 것이다. 지도를 입력하여 단지수를 출력하고, 각 단지에 속하는 집의 수를 오름차순으로 정렬하여 출력하는 프로그램을 작성하시오.</p> | ||
|
||
<p style="text-align: center;"><img alt="" src="https://www.acmicpc.net/upload/images/ITVH9w1Gf6eCRdThfkegBUSOKd.png" style="height:192px; width:409px"></p> | ||
|
||
### 입력 | ||
|
||
<p>첫 번째 줄에는 지도의 크기 N(정사각형이므로 가로와 세로의 크기는 같으며 5≤N≤25)이 입력되고, 그 다음 N줄에는 각각 N개의 자료(0혹은 1)가 입력된다.</p> | ||
|
||
### 출력 | ||
|
||
<p>첫 번째 줄에는 총 단지수를 출력하시오. 그리고 각 단지내 집의 수를 오름차순으로 정렬하여 한 줄에 하나씩 출력하시오.</p> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
from sys import stdin | ||
from collections import deque | ||
|
||
n = int(stdin.readline()) | ||
|
||
|
||
arr = [] | ||
for _ in range(n): | ||
arr.append(list(map(int, list(stdin.readline().strip())))) | ||
# print(arr) | ||
dx = [0, 0, 1, -1] | ||
dy = [1, -1, 0, 0] | ||
|
||
counts = [] | ||
for i in range(n): | ||
for j in range(n): | ||
if arr[i][j] == 1: | ||
count = 0 | ||
queue = deque([(i, j)]) | ||
arr[i][j] = 0 | ||
while queue: | ||
y, x = queue.popleft() | ||
count += 1 | ||
for k in range(4): | ||
if ( | ||
0 <= y + dy[k] < n | ||
and 0 <= x + dx[k] < n | ||
and arr[y + dy[k]][x + dx[k]] == 1 | ||
): | ||
queue.append((y + dy[k], x + dx[k])) | ||
arr[y + dy[k]][x + dx[k]] = 0 | ||
|
||
counts.append(count) | ||
counts.sort() | ||
|
||
print(len(counts)) | ||
for c in counts: | ||
print(c) |