https://www.acmicpc.net/problem/2667
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.*;
public class Main {
static int[][] arr;
static int n;
static int[] dx = {-1, 0, 1, 0};
static int[] dy = {0, 1, 0, -1};
static Queue<Point> q = new LinkedList<>();
static int cntHouse;
static class Point {
int x, y;
public Point(int x, int y) {
this.x = x;
this.y = y;
}
}
public static void bfs(int x, int y) {
q.add(new Point(x, y));
while (!q.isEmpty()) {
Point p = q.poll();
for (int i = 0; i < 4; i++) {
int nx = p.x + dx[i];
int ny = p.y + dy[i];
if (nx < 0 || nx >= n || ny < 0 || ny >= n) continue;
if (arr[nx][ny] == 1) { // 집이면
arr[nx][ny] = 0; // 방문 처리
cntHouse++; // 집의 수 카운트
q.add(new Point(nx, ny));
}
}
}
}
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
n = Integer.parseInt(br.readLine());
arr = new int[n][n];
for (int i = 0; i < n; i++) {
String str = br.readLine();
for (int j = 0; j < n; j++) {
arr[i][j] = str.charAt(j) - '0';
}
}
List<Integer> list = new ArrayList<>();
int cntGroup = 0;
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if (arr[i][j] == 0) continue; // 집이 아니면 무시
cntGroup++; // 단지 수 카운트
cntHouse = 1; // 출발하는 지점도 집도 카운트
arr[i][j] = 0; // 출발하는 지점 방문 처리
bfs(i, j);
list.add(cntHouse);
}
}
Collections.sort(list);
System.out.println(cntGroup);
for (int x : list) {
System.out.println(x);
}
}
}
'ALGORITHM' 카테고리의 다른 글
[JAVA] 백준 7576번- 토마토 (0) | 2022.12.16 |
---|---|
[JAVA] 백준 7562번- 나이트의 이동 (0) | 2022.12.16 |
[JAVA] 백준 4963번- 섬의 개수 (0) | 2022.12.15 |
[JAVA] 백준 2178번- 미로 탐색 (0) | 2022.12.15 |
[JAVA] 백준 11723번- 집합(비트 마스크) (0) | 2022.12.15 |