[백준] P.2667 단지번호 붙이기
https://www.acmicpc.net/problem/2667
🖊️문제
<그림 1>과 같이 정사각형 모양의 지도가 있다. 1은 집이 있는 곳을, 0은 집이 없는 곳을 나타낸다. 철수는 이 지도를 가지고 연결된 집의 모임인 단지를 정의하고, 단지에 번호를 붙이려 한다. 여기서 연결되었다는 것은 어떤 집이 좌우, 혹은 아래위로 다른 집이 있는 경우를 말한다. 대각선상에 집이 있는 경우는 연결된 것이 아니다. <그림 2>는 <그림 1>을 단지별로 번호를 붙인 것이다. 지도를 입력하여 단지수를 출력하고, 각 단지에 속하는 집의 수를 오름차순으로 정렬하여 출력하는 프로그램을 작성하시오.
입력
첫 번째 줄에는 지도의 크기 N(정사각형이므로 가로와 세로의 크기는 같으며 5≤N≤25)이 입력되고, 그 다음 N줄에는 각각 N개의 자료(0혹은 1)가 입력된다.
출력
첫 번째 줄에는 총 단지수를 출력하시오. 그리고 각 단지내 집의 수를 오름차순으로 정렬하여 한 줄에 하나씩 출력하시오.
🖊️풀이 방법
알고리즘 분류를 확인해보면 dfs나 bfs로 풀어주면 되는데 나는 bfs로 풀어주었다.
dx = {1, 0, -1, 0}
dy = {0, 1, 0, -1}
의 네 방향으로 이동하며 탐색하면서 아직 방문하지 않았고, 해당 값이 1이면 큐에 다시 삽입해주고 count를 1씩 증가시키면서 단지 내 가구 수를 계산해준다.
계산한 가구 수를 ArrayList에 넣어주면서 각 단지 별 가구 수를 저장시키고, 리스트의 크기가 단지 수 가 될 수 있도록 작성해주었다.
+(24. 03. 15)
dfs로도 오늘 한 번 풀어봤는데, 푼 방식은 큰 차이는 없고 그냥 bfs를 적용시켰냐, dfs를 적용시켰냐의 차이!!
다음에 dfs랑 bfs 비교 글을 한 번 작성하면서 어떤 문제에 어떤 탐색 기법이 적합한지 고민을 해봐야겠다.
🖊️코드
package BFS;
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;
import java.util.Scanner;
import java.util.StringTokenizer;
public class P2667 {
static int n;
static boolean visited[][];
static int arr[][];
static int[] dx = {1, 0, -1, 0};
static int[] dy = {0, 1, 0, -1};
static ArrayList<Integer> list = new ArrayList<>();
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
arr = new int[n][n];
visited = new boolean[n][n];
for (int i = 0; i < n; i++) {
String str = sc.next();
for (int j = 0; j < n; j++) {
arr[i][j] = str.charAt(j)-'0';
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if(arr[i][j]==1 && !visited[i][j]){
bfs(i,j);
}
}
}
Collections.sort(list);
System.out.println(list.size());
for(int item : list){
System.out.println(item);
}
}
static void bfs(int x, int y){
Queue<int[]> queue = new LinkedList<>();
queue.add(new int[]{x,y});
visited[x][y] = true;
int count = 1;
while (!queue.isEmpty()){
int[] tmp = queue.poll();
int nX = tmp[0];
int nY = tmp[1];
for (int i = 0; i < 4; i++) {
int tmpX = nX + dx[i];
int tmpY = nY + dy[i];
if(tmpX>=0 && tmpY>=0 && tmpY<n && tmpX<n && arr[tmpX][tmpY] == 1 && !visited[tmpX][tmpY]){
visited[tmpX][tmpY] = true;
count++;
queue.add(new int[]{tmpX, tmpY});
}
}
}
list.add(count);
}
}
dfs, bfs둘 다 방향 탐색은 아직 어렵게 느껴진다..ㅠㅠㅠ 많이 연습해서 계속 익혀야지 홧팅
+ dfs 코드
package DFS;
import java.util.ArrayList;
import java.util.Collections;
import java.util.Scanner;
public class P2667 {
static int n, count;
static boolean visited[][];
static int arr[][];
static int[] dx = {1, 0, -1, 0};
static int[] dy = {0, 1, 0, -1};
static ArrayList<Integer> list = new ArrayList<>();
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
n = sc.nextInt();
arr = new int[n][n];
visited = new boolean[n][n];
for (int i = 0; i < n; i++) {
String str = sc.next();
for (int j = 0; j < n; j++) {
arr[i][j] = str.charAt(j)-'0';
}
}
for (int i = 0; i < n; i++) {
for (int j = 0; j < n; j++) {
if(arr[i][j]==1 && !visited[i][j]){
dfs(i,j);
list.add(count+1);
count = 0;
}
}
}
Collections.sort(list);
System.out.println(list.size());
for(int item : list){
System.out.println(item);
}
}
static void dfs(int x, int y){
visited[x][y] = true;
for (int i = 0; i < 4; i++) {
int tmpX = x+dx[i];
int tmpY = y+dy[i];
if(tmpX>=0 && tmpY>=0 && tmpY<n && tmpX<n && arr[tmpX][tmpY] == 1 && !visited[tmpX][tmpY]){
count++;
dfs(tmpX, tmpY);
}
}
}
}