- 코드
정답 코드 : bfs로 구현하였고, priorityqueue를 이용하면 알아서 오름차순으로 출력해준다는 걸 알았다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.PriorityQueue;
import java.util.Queue;
import java.util.StringTokenizer;
public class Main {
static int[][] array;
static boolean[][] check;
static int N;
static int[] x = {-1,1,0,0};
static int[] y = {0,0,-1,1};
static PriorityQueue<Integer> priorityQueue = new PriorityQueue<>();
public static void main(String args[]) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
array = new int[N][N];
check = new boolean[N][N];
for (int i = 0; i < N; i++) {
String s = br.readLine();
for (int j = 0; j < N; j++) {
array[i][j] = s.charAt(j) - '0';
}
}
for(int i = 0; i < N; i++) {
for(int j = 0; j < N; j++) {
if(!check[i][j] && array[i][j] == 1) {
bfs(i,j);
}
}
}
System.out.println(priorityQueue.size());
while (!priorityQueue.isEmpty())
System.out.println(priorityQueue.poll());
}
public static void bfs(int i, int j){
Queue<int[]> queue = new LinkedList<>();
queue.offer(new int[] {i,j});
int count = 0;
while(!queue.isEmpty()){
int location[] = queue.poll();
for(int direction = 0; direction<4; direction++){
int r = location[0] + x[direction];
int c = location[1] + y[direction];
if(r >= 0 && c >= 0 && r < N && c < N){
if(array[r][c] == 1 && !check[r][c]){
queue.offer(new int[] {r,c});
check[r][c] = true;
count++;
}
}
}
}
if(count == 0)
priorityQueue.offer(1);
else
priorityQueue.offer(count);
}
}
'algorithm' 카테고리의 다른 글
[JAVA] 백준 2631번 : 줄세우기 (0) | 2020.09.14 |
---|---|
[JAVA] 백준 3020번 : 개똥벌레 (0) | 2020.09.14 |
[JAVA]백준 1697번 : 숨바꼭질 (0) | 2020.09.09 |
[JAVA] 백준 11724번 : 연결 요소의 개수 (0) | 2020.09.08 |
[JAVA] 백준 1260번 : DFS와 BFS (0) | 2020.09.08 |