본문 바로가기
백준

[백준] 2667 - 단지번호붙이기, C++

by 황인태(intaehwang) 2020. 1. 6.
반응형

https://www.acmicpc.net/problem/2667

 

2667번: 단지번호붙이기

<그림 1>과 같이 정사각형 모양의 지도가 있다. 1은 집이 있는 곳을, 0은 집이 없는 곳을 나타낸다. 철수는 이 지도를 가지고 연결된 집들의 모임인 단지를 정의하고, 단지에 번호를 붙이려 한다. 여기서 연결되었다는 것은 어떤 집이 좌우, 혹은 아래위로 다른 집이 있는 경우를 말한다. 대각선상에 집이 있는 경우는 연결된 것이 아니다. <그림 2>는 <그림 1>을 단지별로 번호를 붙인 것이다. 지도를 입력하여 단지수를 출력하고, 각 단지에 속하는 집의 수

www.acmicpc.net

 본 문제는 KOI 1996 한국정보올림피아드 초등부 1번 문제다. 입력받은 배열에서 단지를 구분하고 단지 내 집의 수를 오름차순으로 출력하는 문제다. BFS를 이용하여 전체 배열 탐색을 하면 쉽게 풀 수 있다. 여기서 주의해야 점은 1개의 숫자를 입력받도록 해야한다.

  1. 1개의 숫자씩 입력받기
  2. 단지 탐색하기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
#include <cstdio>
#include <vector>
#include <queue>
#include <algorithm>
 
using namespace std;
 
int d[25][25];
const int dx[] = {1-100};
const int dy[] = {001-1};
bool chk[25][25];
 
int main() {
    int n;
    scanf("%d"&n);
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            scanf("%1d"&d[i][j]);
        }
    }
    vector<int> ans;
    queue<pair<intint>> q;
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            // 새로운 단지를 찾았을 때,
            if (!chk[i][j] && d[i][j] == 1) {
                int cnt = 1;
                q.push(make_pair(i, j));
                chk[i][j] = true;
                while (!q.empty()) {
                    int x = q.front().first;
                    int y = q.front().second;
                    q.pop();
                    for (int i = 0; i < 4; i++) {
                        int nx = dx[i] + x;
                        int ny = dy[i] + y;
                        if (nx >= 0 && nx < n && ny >= 0 && ny < n) {
                            if (!chk[nx][ny] && d[nx][ny] == 1) {
                                q.push(make_pair(nx, ny));
                                chk[nx][ny] = true;
                                cnt += 1;
                            }
                        }
                    }
                }
                ans.push_back(cnt);
            }
        }
    }
    // 각 단지내 집의 수를 오름차순으로 정렬
    sort(ans.begin(), ans.end());
    // 단지의 개수 출력
    printf("%d\n", ans.size());
    for (int i = 0; i < ans.size(); i++) {
        printf("%d\n", ans[i]);
    }
    return 0;
}
cs
반응형
Buy me a coffeeBuy me a coffee

댓글