[백준_14502]_연구소

18826 단어 DFSpsSAMSUNG유형DFS

LINK

문제

벽을 3개 세운뒤 감염을 최대한 막아 0의 개수가 가장 많이 존재할 때 최대 0이 몇개인지를 물어보는 문제.


1. 벽을 3개 뽑는다.(값이 0인 지점) + -> 뽑을 때 일차원배열의 조합방식이랑 비슷하게 구현하기에 까다롭다. 그러므로 해당 맵에 벽이라고 색칠 한다. 그리고 함수호출이 종료된 이후 map을 다시 원래대로 바꾸어 놓아야 한다.

2. 배열의 깊은 복사를 이용하여 다른 배열에 복사 후 전염시켜본다.

3. 전염 시킨뒤 0의 개수를 세어본다

package oneDay_twoSol.DFS_BFS2.Theory.Deep;

import java.util.Scanner;

public class Laboratory {
    static int n, m, map[][];
    static int dy[] = {-1, 1, 0, 0};
    static int dx[] = {0, 0, -1, 1};
    static int k = 3;

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        n = sc.nextInt();
        m = sc.nextInt();
        map = new int[n][m];
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                map[i][j]=sc.nextInt();
            }
        }

        wallConstruction(0);
        System.out.println(MaxStableCnt);
    }

    static int temp[][];
    static int MaxStableCnt=0;
    static void wallConstruction(int idx) {
        if (idx == k) {
            temp = copy();
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < m; j++) {
                    if (temp[i][j] == 2)
                        infection(i, j);
                }
            }
            int stableCnt = checkStableArea();
            MaxStableCnt=Math.max(stableCnt,MaxStableCnt);
            return;
        }

        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (map[i][j] == 0) {
                    map[i][j] = 1;
                    wallConstruction(idx + 1);
                    map[i][j] = 0;
                }
            }
        }
    }

    private static int checkStableArea() {
        int cnt=0;
        for (int i = 0; i < n; i++) {
            for (int j = 0; j < m; j++) {
                if (temp[i][j] == 0)
                    cnt++;
            }
        }
        return cnt;
    }

    static void infection(int y, int x) {
        for (int i = 0; i < 4; i++) {
            int ny = dy[i] + y;
            int nx = dx[i] + x;
            if (ny >= 0 && nx >= 0 && ny < n && nx < m) {
                if (temp[ny][nx] == 0) {
                    temp[ny][nx] = 2;
                    infection(ny, nx);
                }
            }
        }
    }

    static int[][] copy() {
        int temp[][] = new int[n][m];
        for (int i = 0; i < n; i++) {
            temp[i] = map[i].clone();
        }

        return temp;
    }

}

좋은 웹페이지 즐겨찾기