mun dev

[백준] 4963 섬의 개수 자바(Java) 본문

알고리즘/백준

[백준] 4963 섬의 개수 자바(Java)

mndev 2023. 10. 4. 15:53

문제설명

정사각형으로 이루어져 있는 섬과 바다 지도가 주어진다. 섬의 개수를 세는 프로그램을 작성하시오.

한 정사각형과 가로, 세로 또는 대각선으로 연결되어 있는 사각형은 걸어갈 수 있는 사각형이다.

두 정사각형이 같은 섬에 있으려면, 한 정사각형에서 다른 정사각형으로 걸어서 갈 수 있는 경로가 있어야 한다. 지도는 바다로 둘러싸여 있으며, 지도 밖으로 나갈 수 없다.

 

입력

입력은 여러 개의 테스트 케이스로 이루어져 있다. 각 테스트 케이스의 첫째 줄에는 지도의 너비 w와 높이 h가 주어진다. w와 h는 50보다 작거나 같은 양의 정수이다.

둘째 줄부터 h개 줄에는 지도가 주어진다. 1은 땅, 0은 바다이다.

입력의 마지막 줄에는 0이 두 개 주어진다.

 

출력

각 테스트 케이스에 대해서, 섬의 개수를 출력한다.

 

풀이

한 정사각형과 가로, 세로 또는 대각선으로 연결되어 있는 사각형이라는 조건을 보고 dfs로 풀어야 겠다는 생각이 들어

이렇게 방향을 설정하여 대각선까지 체크하도록 dx, dy 배열을 선언하였다.

 

  public static int dx[]={0,0,-1,1,-1,1,-1,1};
  public static int dy[]={-1,1,0,0,1,1,-1,-1};

이후 x, y축을 이용해 연결되어 있는 점이 있는지 확인하며 없을 경우 방문하지 않고 연결되어 있다면 방문하도록 구현했다.

dfs로 먼저 풀이 후에 bfs도 사용하여 풀이 해봤다.

 

통과한 코드

  • dfs사용풀이 
import java.util.*;
import java.io.*;

public class Main {
    public static int arr[][];
    public static boolean visited[][];
    public static int dx[]={0,0,-1,1,-1,1,-1,1};
    public static int dy[]={-1,1,0,0,1,1,-1,-1};
    public static int w,h;
    public static int cnt;
    public static void main(String[] args) throws IOException {
        BufferedReader br= new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st;
        while(true){
            st=new StringTokenizer(br.readLine());

            h=Integer.parseInt(st.nextToken());
            w=Integer.parseInt(st.nextToken());

            if(w==0 && h==0){
                break;
            }

            cnt=0;
            arr=new int[w][h];
            visited=new boolean[w][h];

            for(int i=0; i<w; i++){
                st=new StringTokenizer(br.readLine());
                for(int j=0; j<h; j++){
                    arr[i][j]=Integer.parseInt(st.nextToken());
                }
            }

            for(int i=0; i<w; i++){
                for(int j=0; j<h; j++){
                    if(arr[i][j]==1 && !visited[i][j]){
                        dfs(i,j);
                        cnt++;
                    }
                }
            }
            System.out.println(cnt);
        }
    }
    public static void dfs(int x, int y){
        visited[x][y]=true;

        for(int i=0; i<8; i++){
            int cx=x+dx[i];
            int cy=y+dy[i];

            if(cx>=0 && cy>=0 && cx<w && cy<h){
                if(!visited[cx][cy]&& arr[cx][cy]==1){
                    dfs(cx,cy);
                }
            }
        }
    }
}

 

  • bfs 풀이
import java.util.*;
import java.io.*;

public class Main {
    public static int arr[][];
    public static int dx[]={0,0,-1,1,-1,1,-1,1};
    public static int dy[]={-1,1,0,0,1,1,-1,-1};
    public static int w,h;
    public static int cnt;

    public static class Node{
        int x,y;
        public Node(int x, int y){
            this.x=x;
            this.y=y;
        }
    }
    public static void main(String[] args) throws IOException {
        BufferedReader br= new BufferedReader(new InputStreamReader(System.in));
        StringTokenizer st;

        while(true){
            st=new StringTokenizer(br.readLine());

            h=Integer.parseInt(st.nextToken());
            w=Integer.parseInt(st.nextToken());

            if(w==0 && h==0){
                break;
            }

            cnt=0;
            arr=new int[w][h];

            for(int i=0; i<w; i++){
                st=new StringTokenizer(br.readLine());
                for(int j=0; j<h; j++){
                    arr[i][j]=Integer.parseInt(st.nextToken());
                }
            }

            for(int i=0; i<w; i++){
                for(int j=0; j<h; j++){
                    if(arr[i][j]==1){
                        cnt++;
                        bfs(i,j);
                    }
                }
            }
            System.out.println(cnt);
        }
    }
  
    public static void bfs(int x,int y){
        Queue<Node> q= new LinkedList<>();
        q.offer(new Node(x,y));
        arr[x][y]=0;

        while(!q.isEmpty()){
            Node node =q.poll();

            for(int i=0; i<8; i++){
                int cx=node.x+dx[i];
                int cy=node.y+dy[i];

                if(cx>=0 && cy>=0 && cx<w && cy<h){
                    if(arr[cx][cy]==1){
                        arr[cx][cy]=0;
                        q.offer(new Node(cx,cy));
                    }
                }
            }
        }
    }
}