말랑한 하루
[BAEKJOON] 2667 단지번호붙이기 (Java) 본문
반응형
[ 문제 ]
더보기
<그림 1>과 같이 정사각형 모양의 지도가 있다. 1은 집이 있는 곳을, 0은 집이 없는 곳을 나타낸다. 철수는 이 지도를 가지고 연결된 집의 모임인 단지를 정의하고, 단지에 번호를 붙이려 한다. 여기서 연결되었다는 것은 어떤 집이 좌우, 혹은 아래위로 다른 집이 있는 경우를 말한다. 대각선상에 집이 있는 경우는 연결된 것이 아니다. <그림 2>는 <그림 1>을 단지별로 번호를 붙인 것이다. 지도를 입력하여 단지수를 출력하고, 각 단지에 속하는 집의 수를 오름차순으로 정렬하여 출력하는 프로그램을 작성하시오.
입력
첫 번째 줄에는 지도의 크기 N(정사각형이므로 가로와 세로의 크기는 같으며 5≤N≤25)이 입력되고, 그 다음 N줄에는 각각 N개의 자료(0혹은 1)가 입력된다.
출력
첫 번째 줄에는 총 단지수를 출력하시오. 그리고 각 단지내 집의 수를 오름차순으로 정렬하여 한 줄에 하나씩 출력하시오.
[ Java ]
package BFS_DFS;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.ArrayList;
import java.util.Collections;
import java.util.LinkedList;
import java.util.Queue;
class Coordinates{
int y;
int x;
public Coordinates(int y, int x) {
this.y=y;
this.x=x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
}
public class _2667_단지번호붙이기 {
static final int MAX = 30;
static int N;
static int ay[] = {0,0,-1,1};
static int ax[] = {-1,1,0,0};
static boolean map[][] = new boolean[MAX][MAX];
static boolean visit[][] = new boolean[MAX][MAX];
static ArrayList<Integer> result = new ArrayList<Integer>(MAX);
static void init() throws NumberFormatException, IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N=Integer.parseInt(br.readLine());
for(int t=0;t<N;t++) {
String temp = br.readLine();
for(int k=0;k<temp.length();k++) {
char key = temp.charAt(k);
map[t][k] = key == '0' ? false : true;
}
}
}
static void solve() {
for(int y=0;y<N;y++)
for(int x=0;x<N;x++)
if (map[y][x] && !visit[y][x])
bfs(y, x);
}
static void bfs(int y, int x) {
Queue<Coordinates> q = new LinkedList<Coordinates>();
q.add(new Coordinates(y, x));
visit[y][x] = true;
int cnt=1;
while(!q.isEmpty()) {
Coordinates out = q.poll();
for(int i=0;i<4;i++) {
int ny = out.getY()+ay[i];
int nx = out.getX()+ax[i];
if (!range(ny, nx) && map[ny][nx]) {
cnt++;
visit[ny][nx] = true;
q.add(new Coordinates(ny, nx));
}
}
}
result.add(cnt);
}
static boolean range(int y, int x) {
return y<0||x<0||y>N-1||x>N-1||visit[y][x];
}
public static void main(String[] args) throws NumberFormatException, IOException {
init();
solve();
System.out.println(result.size());
Collections.sort(result);
for(int item : result)
System.out.println(item);
}
}
반응형
'문제풀이 > BAEKJOON Online Judge' 카테고리의 다른 글
[BAEKJOON] 1244 스위치 켜고 끄기 (Java) (0) | 2021.02.02 |
---|---|
[BAEKJOON] 17478재귀함수가 뭔가요? (Java) (0) | 2021.02.01 |
[BAEKJOON] 1707 이분그래프 (Java) (0) | 2021.01.31 |
[BAEKJOON] 11724 연결요소의 개수 (Java) (0) | 2021.01.31 |
[BAEKJOON] 1463 1로 만들기 (Java) (0) | 2021.01.26 |
Comments