[BaekJoon] 2667번 - 단지번호붙이기 [Java][C++]
[BaekJoon] 2667번 - 단지번호붙이기 [Java][C++]
1. 문제 풀이
주어진 지도의 모든 좌표를 순회하며 집이 있는 곳이면 단지의 크기를 구하고 개수를 세주면 된다. 단지의 크기는 BFS를 활용해서 구하면 되고 이를 오름차순으로 정렬해서 출력해줬다.
2. 코드
1. 풀이 [Java]
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
59
60
61
62
63
64
65
66
67
68
import java.io.*;
import java.util.*;
public class Main {
static final int[] dr = {-1, 0, 1, 0};
static final int[] dc = {0, 1, 0, -1};
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
int N = Integer.parseInt(br.readLine());
char[][] map = new char[N][N];
for (int i = 0; i < N; i++) {
map[i] = br.readLine().toCharArray();
}
int cnt = 0;
List<Integer> list = new ArrayList<>();
for (int i = 0; i < N; i++) {
for (int j = 0; j < N; j++) {
if (map[i][j] == '1') {
int result = bfs(i, j, N, map);
cnt++;
list.add(result);
}
}
}
list.sort(Comparator.naturalOrder());
sb.append(cnt).append("\n");
for (int x : list) {
sb.append(x).append("\n");
}
System.out.println(sb);
}
static int bfs(int sr, int sc, int N, char[][] map) {
Queue<int[]> q = new ArrayDeque<>();
q.offer(new int[]{sr, sc});
map[sr][sc] = '0';
int cnt = 1;
while (!q.isEmpty()) {
int[] node = q.poll();
for (int d = 0; d < 4; d++) {
int nr = node[0] + dr[d];
int nc = node[1] + dc[d];
if (nr < 0 || nr >= N || nc < 0 || nc >= N) continue;
if (map[nr][nc] == '0') continue;
q.add(new int[]{nr, nc});
map[nr][nc] = '0';
cnt++;
}
}
return cnt;
}
}
2. 풀이 [C++]
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
59
60
61
62
63
64
65
66
67
68
69
70
71
#include <bits/stdc++.h>
using namespace std;
int dr[4] = {-1, 0, 1, 0};
int dc[4] = {0, 1, 0, -1};
int n;
char grid[25][25];
int bfs(int sr, int sc) {
queue<pair<int, int>> q;
q.push({sr, sc});
grid[sr][sc] = '0';
int cnt = 1;
while (!q.empty()) {
auto [r, c] = q.front();
q.pop();
for (int d = 0; d < 4; d++) {
int nr = r + dr[d];
int nc = c + dc[d];
if (nr < 0 || nr >= n || nc < 0 || nc >= n) continue;
if (grid[nr][nc] == '0') continue;
q.push({nr, nc});
grid[nr][nc] = '0';
cnt++;
}
}
return cnt;
}
int main() {
ios::sync_with_stdio(false);
cin.tie(nullptr);
cin >> n;
for (int i = 0; i < n; i++) {
string s;
cin >> s;
for (int j = 0; j < n; j++) {
grid[i][j] = s[j];
}
}
int cnt = 0;
vector<int> v;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (grid[i][j] == '1') {
int res = bfs(i, j);
cnt++;
v.push_back(res);
}
}
}
sort(v.begin(), v.end());
cout << cnt << '\n';
for (int x : v) {
cout << x << '\n';
}
}
This post is licensed under CC BY 4.0 by the author.