Algorithm/BOJ

[BOJ] 파이프 옮기기 1

goakgoak 2020. 9. 6. 16:12

[17070] 파이프 옮기기 1

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

 

Solution

  • (0,1) 위치에서 부터 이동할 수 있는 모든 경우를 dfs로 탐색
  • 대각선 파이프로 이동하는 경우에 빈칸이어야 하는 조건을 미리 고려해야한다.

 

 

소스코드

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
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
 
public class Main {
    static final int WIDTH = 0;
    static final int HEIGHT = 1;
    static final int DIAGONAL = 2;
    static int n, answer;
    static int[][] map, visited;
    static int[] dx = { 011 };
    static int[] dy = { 101 };
 
    public static void main(String[] args) throws IOException {
        BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
        n = stoi(br.readLine());
        map = new int[n][n];
        visited = new int[n][n];
        StringTokenizer st;
        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());
            }
        }
        answer = 0;
        dfs(WIDTH, 01);
        System.out.println(answer);
    }
 
    static void dfs(int pipe, int x, int y) {
        if (x == n - 1 && y == n - 1) {
            answer++;
            visited[x][y] = 0;
            return;
        }
 
        visited[x][y] = 1;
 
        int nx, ny;
        // 가로
        if (pipe == WIDTH) {
            for (int i : new int[] { WIDTH, DIAGONAL }) {
                nx = x + dx[i];
                ny = y + dy[i];
                if (nx >= 0 && ny >= 0 && nx < n && ny < n && visited[nx][ny] == 0 && check(i, x, y)) {
                    dfs(i, nx, ny);
                    visited[nx][ny] = 0;
                }
            }
        } // 세로
        else if (pipe == HEIGHT) {
            for (int i : new int[] { HEIGHT, DIAGONAL }) {
                nx = x + dx[i];
                ny = y + dy[i];
                if (nx >= 0 && ny >= 0 && nx < n && ny < n && visited[nx][ny] == 0 && check(i, x, y)) {
                    dfs(i, nx, ny);
                    visited[nx][ny] = 0;
                }
            }
        } // 대각선
        else {
            for (int i : new int[] { WIDTH, HEIGHT, DIAGONAL }) {
                nx = x + dx[i];
                ny = y + dy[i];
                if (nx >= 0 && ny >= 0 && nx < n && ny < n && visited[nx][ny] == 0 && check(i, x, y)) {
                    dfs(i, nx, ny);
                    visited[nx][ny] = 0;
                }
            }
        }
    }
 
    static boolean check(int pipe, int x, int y) {
        if (pipe == WIDTH) {
            if (map[x + dx[WIDTH]][y + dy[WIDTH]] == 0) {
                return true;
            }
        } else if (pipe == HEIGHT) {
            if (map[x + dx[HEIGHT]][y + dy[HEIGHT]] == 0) {
                return true;
            }
        } else {
            if (map[x + dx[WIDTH]][y + dy[WIDTH]] == 0 && map[x + dx[HEIGHT]][y + dy[HEIGHT]] == 0
                    && map[x + dx[DIAGONAL]][y + dy[DIAGONAL]] == 0) {
                return true;
            }
        }
        return false;
    }
 
    static int stoi(String s) {
        return Integer.valueOf(s);
    }
}
 
cs