ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • [BOJ] 청소년 상어
    Algorithm/BOJ 2021. 1. 19. 20:20

    [19236] 청소년 상어

    www.acmicpc.net/problem/19236

     

    Solution

    • 백트래킹 문제인데 중간에 되돌려 놔야할 조건을 놓쳐서 또 엄청난 삽질을 했다..
    • 문제의 알고리즘의 큰 흐름은 다음과 같다
    • (1) 상어가 (sx, sy) 자리의 물고기를 먹는다 & 상어는 먹은 물고기의 방향을 가진다.
    • (2) 각자 번호와 방향을 가진 물고기들이 작은 번호 부터 순서대로 자신의 방향으로 이동한다.
    • (3) 상어는 자신의 방향으로 갈 수 있는 칸으로 한 번 이동할 수 있다. => dfs() 호출
    • (1) - (3) 과정이 반복되고, answer 변수에 상어가 먹을 수 있는 물고기 번호의 합의 최대값을 저장한다.
    • 3번 과정에서 어떤 칸으로 가야 answer의 최댓값을 구할 수 있는지 알 수 없기 때문에 모든 경우를 탐색해야한다.
    • dfs 호출로 끝까지 탐색하고 처음 호출했던 라인으로 돌아왔을 때는 다른 칸으로 가기 전에 물고기의 상태와 map을 이전 상태로 되돌려야하기 때문에 매 호출마다 copy()로 map 상태를 저장해놓고, 탐색이 끝나면 revert()로 되돌릴 수 있도록 구현했다.

     

     

    소스코드

     

    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
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    import java.io.BufferedReader;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.util.*;
     
    public class Main {
        static int answer;
        static int[][] map;
        static Fish[] fish;
        // ↑, ↖, ←, ↙, ↓, ↘, →, ↗
        static int[] dx = {0-1-101110-1};
        static int[] dy = {00-1-1-10111};
     
        static class Fish {
            int x, y, dir;
            boolean died;
     
            public Fish(int x, int y, int dir) {
                this.x = x;
                this.y = y;
                this.dir = dir;
                this.died = false;
            }
     
            @Override
            public String toString() {
                return "[ " + this.x + " " + this.y + " " + this.dir + " ]";
            }
        }
     
        public static void main(String[] args) throws IOException {
            BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
            map = new int[4][4];
            fish = new Fish[17];
     
            // input
            StringTokenizer st;
            int a, b;
            for (int i = 0; i < 4; i++) {
                st = new StringTokenizer(br.readLine());
                for (int j = 0; j < 4; j++) {
                    a = stoi(st.nextToken());
                    b = stoi(st.nextToken());
                    map[i][j] = a;
                    fish[a] = new Fish(i, j, b);
                }
            }
     
            answer = Integer.MIN_VALUE;
            dfs(00, map[0][0]);
            System.out.println(answer);
        }
     
        private static void dfs(int sx, int sy, int sum) {
            answer = Math.max(answer, sum);
            int[][] copyMap = new int[4][4];
            Fish[] copyFish = new Fish[17];
     
            // (1) 물고기 먹고, 상어 방향 반영
            int fishNum = map[sx][sy];
            int dir = fish[fishNum].dir;
            fish[fishNum].died = true;
            map[sx][sy] = -1;
     
            // (2) 물고기 move
            move(map, fish);
     
            // (*) 상어 이동 전 map copy
            copy(copyMap, copyFish);
     
            // (3) 상어 이동
            int nx, ny;
            for (int i = 1; i < 4; i++) { // for ( 상어가 이동할 수 있는 칸에 대해)
                nx = sx + (i * dx[dir]);
                ny = sy + (i * dy[dir]);
     
                // map 벗어나거나 빈 칸인지
                if (isInvalid(nx, ny))
                    break;
                if (map[nx][ny] == 0continue;
     
                // (**) 상어 위치는 빈 칸으로 업데이트
                map[sx][sy] = 0;
     
                // 사냥
                dfs(nx, ny, sum + map[nx][ny]);
     
                // (*) 상태로 돌아감, 상어가 어떤 칸으로도 이동하지 않은 상태로 다시 복구
                revertMap(copyMap, copyFish);
     
                // (**) 상어 위치 복구
                map[sx][sy] = -1;
            }
        }
     
        private static boolean isInvalid(int nx, int ny) {
            return nx < 0 || ny < 0 || nx >= 4 || ny >= 4;
        }
     
        private static void revertMap(int[][] copyMap, Fish[] copyFish) {
            for (int i = 0; i < map.length; i++) {
                for (int j = 0; j < map[i].length; j++) {
                    map[i][j] = copyMap[i][j];
                }
            }
     
            for (int i = 1; i < copyFish.length; i++) {
                fish[i].x = copyFish[i].x;
                fish[i].y = copyFish[i].y;
                fish[i].dir = copyFish[i].dir;
                fish[i].died = copyFish[i].died;
            }
        }
     
        private static void copy(int[][] copyMap, Fish[] copyFish) {
            for (int i = 0; i < map.length; i++) {
                for (int j = 0; j < map[i].length; j++) {
                    copyMap[i][j] = map[i][j];
                }
            }
     
            for (int i = 1; i < copyFish.length; i++) {
                copyFish[i] = new Fish(000);
                copyFish[i].x = fish[i].x;
                copyFish[i].y = fish[i].y;
                copyFish[i].dir = fish[i].dir;
                copyFish[i].died = fish[i].died;
            }
        }
     
        private static int[][] move(int[][] map, Fish[] fish) {
            for (int i = 1; i < fish.length; i++) {
                if (fish[i].died) continue;
                int nx, ny, cx, cy;
                cx = fish[i].x;
                cy = fish[i].y;
     
                // 초기 방향
                int dir = fish[i].dir;
                while (true) {
                    nx = cx + dx[fish[i].dir];
                    ny = cy + dy[fish[i].dir];
     
                    // 범위 벗어나거나 상어 있으면 반시계방향 변경
                    // ↑, ↖, ←, ↙, ↓, ↘, →, ↗
                    if (nx < 0 || ny < 0 || nx >= 4 || ny >= 4 || map[nx][ny] == -1) {
                        if (fish[i].dir + 1 > 8) {
                            fish[i].dir = 1;
                        } else {
                            fish[i].dir++;
                        }
                        if (dir == fish[i].dir) break;
                    } else {
                        // 0이면 그냥 이동
                        if (map[nx][ny] == 0) {
                            map[nx][ny] = i;
                            map[cx][cy] = 0;
     
                            fish[i].x = nx;
                            fish[i].y = ny;
                        }
                        // 이동칸에 물고기가 있으면 swap
                        else {
                            int n = map[nx][ny];
                            map[nx][ny] = i;
                            map[cx][cy] = n;
     
                            int tx = fish[n].x;
                            int ty = fish[n].y;
                            fish[n].x = fish[i].x;
                            fish[n].y = fish[i].y;
                            fish[i].x = tx;
                            fish[i].y = ty;
                        }
                        break;
                    }
                }
            }
            return map;
        }
     
        private static int stoi(String s) {
            return Integer.parseInt(s);
        }
    }
     
     
    cs

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

    [BOJ] 근손실  (0) 2021.01.20
    [BOJ] 계란으로 계란치기  (0) 2021.01.20
    [BOJ] 아기상어  (0) 2021.01.12
    [BOJ] 문제집  (0) 2020.11.30
    [BOJ] 행성 터널  (0) 2020.11.28

    댓글

Designed by Tistory.