ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [BOJ] 연구소3
    Algorithm/BOJ 2020. 4. 28. 21:07

    [17142] 연구소3

    https://www.acmicpc.net/problem/17142

    • 연구소2의 응용 문제
    • 처음에 모든 바이러스는 비활성 상태이고, 활성 상태인 바이러스는 상하좌우로 인접한 모든 빈 칸으로 동시 복제되며, 1초가 걸린다. 
    • 승원이는 연구소의 바이러스 M개를 활성 상태로 변경하려고 한다.
    • 활성 바이러스가 비활성 바이러스가 있는 칸으로 가면 비활성 바이러스가 활성으로 변한다.

     

     

    Solution

    • 바이러스 자체에 좌표와 더불어 시간을 저장할 수 있는 step 멤버변수를 설정해서 풀 수 있었다.
    • 입력에서 빈칸은 -1, 바이러스 칸은 -2로 저장
    • permutation으로 m개의 바이러스를 선택해서 모든 경우에 대해 BFS 함수를 돌렸다.
    • map[nx][ny]의 빈칸 or 비활 바이러스 여부에 따라 빈칸인 경우에는 map에 기록, 비활인 경우 map에 기록하지 않음
    • BFS는 시간을 return하고 min에는 최소 시간을 저장한다.
    • (설명 정말 못하네 ,,)

     

     

     

    소스코드

    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.util.Deque;
    import java.util.LinkedList;
    import java.util.List;
    import java.util.StringTokenizer;
     
    public class Main {
        static int n, m, min;
        static int[][] map, copy, visited;
        static int[] a;
        static boolean[] c;
        static List<Dot> virusList;
        static int[] dx = { 1-100 };
        static int[] dy = { 001-1 };
        static StringTokenizer st;
        static Deque<Dot> q;
     
        static class Dot {
            private int x, y, step;
     
            public Dot(int x, int y, int step) {
                this.x = x;
                this.y = y;
                this.step = step;
            }
        }
     
        public static void main(String[] args) throws IOException {
            input();
            permutation(00);
     
            min = (min == Integer.MAX_VALUE) ? -1 : min;
            System.out.println(min);
        }
     
        static void solve() {
            // 바이러스 놓기
            for (int i : a) {
                Dot virus = virusList.get(i);
                copy[virus.x][virus.y] = 0;
                q.offer(virus);
                visited[virus.x][virus.y] = 1;
            }
     
            int time = bfs();
     
            int count = 0;
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < n; j++) {
                    if (copy[i][j] == -1) {
                        count++;
                    }
                }
            }
     
            if (count == 0) {
                min = Math.min(min, time);
            }
        }
     
        static int bfs() {
            int max = 0;
            while (!q.isEmpty()) {
                Dot cur = q.poll();
                max = Math.max(max, copy[cur.x][cur.y]);
                int nx, ny;
                for (int i = 0; i < 4; i++) {
                    nx = cur.x + dx[i];
                    ny = cur.y + dy[i];
     
                    if (nx >= 0 && ny >= 0 && nx < n && ny < n && visited[nx][ny] == 0 && copy[nx][ny] <= 0) {
                        visited[nx][ny] = 1;
                        if (copy[nx][ny] == -2) {
                            q.offer(new Dot(nx, ny, cur.step + 1));
                        }
                        if (copy[nx][ny] == -1) {
                            copy[nx][ny] = cur.step + 1;
                            q.offer(new Dot(nx, ny, cur.step + 1));
                        }
     
                    }
                }
            }
    //        print(copy);
            return max;
        }
     
        static void permutation(int count, int start) {
            if (count == m) {
                ready();
                solve();
                return;
            }
     
            for (int i = start; i < virusList.size(); i++) {
                if (c[i])
                    continue;
                a[count] = i;
                c[i] = true;
                permutation(count + 1, i + 1);
                c[i] = false;
            }
        }
     
        static void input() throws IOException {
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
            st = new StringTokenizer(br.readLine());
            n = stoi(st.nextToken());
            m = stoi(st.nextToken());
            init();
            for (int i = 0; i < n; i++) {
                st = new StringTokenizer(br.readLine());
                for (int j = 0; j < n; j++) {
                    map[i][j] = stoi(st.nextToken());
     
                    if (map[i][j] == 0) {
                        map[i][j] = -1;
                    }
                    if (map[i][j] == 2) {
                        map[i][j] = -2;
                        virusList.add(new Dot(i, j, 0));
                    }
                }
            }
            c = new boolean[virusList.size()];
        }
     
        static void ready() {
            q = new LinkedList<>();
            copy = new int[n][n];
            visited = new int[n][n];
            for (int i = 0; i < n; i++) {
                for (int j = 0; j < n; j++) {
                    copy[i][j] = map[i][j];
                }
            }
        }
     
        static void init() {
            map = new int[n][n];
            a = new int[m];
     
            virusList = new LinkedList<>();
            min = Integer.MAX_VALUE;
        }
     
        static int stoi(String s) {
            return Integer.parseInt(s);
        }
     
        static void print(int[][] a) {
            for (int i = 0; i < a.length; i++) {
                for (int j = 0; j < a.length; j++) {
                    System.out.print(a[i][j] + " ");
                }
                System.out.println();
            }
            System.out.println("------------------");
        }
    }
    cs

    'Algorithm > BOJ' 카테고리의 다른 글

    [BOJ] 회사에 있는 사람  (0) 2020.05.27
    [BOJ] 패션왕 신해빈  (0) 2020.05.27
    [BOJ] 캐슬디펜스  (0) 2020.02.13
    [BOJ] 배열 돌리기 3  (0) 2020.02.11
    [BOJ] 배열 돌리기 1  (0) 2020.02.10

    댓글

Designed by Tistory.