Notice
Recent Posts
Recent Comments
Link
뮁이의 개발새발
[JAVA] 백준 17070 파이프 옮기기1 (DFS) 본문
바보같이 0은 가로 1은 대각 2는 세로로 정해놓고 1을 세로로 생각하고 풀어서 계속 답이 안나왔다... 거의 3시간동안 삽질한듯 ㅠㅠㅠㅠ 같은 스터디 언니가 발견해줘서 해결..~~,,, 어렵다어려워
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.StringTokenizer;
public class bj17070 {
static int N, answer;
static int[][] map;
// →, ↘, ↓
static int[] dx = { 1, 1, 0 };
static int[] dy = { 0, 1, 1 };
public static void main(String[] args) throws NumberFormatException, IOException {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(in.readLine());
map = new int[N][N];
for (int i = 0; i < N; i++) {
StringTokenizer st = new StringTokenizer(in.readLine());
for (int j = 0; j < N; j++) {
map[i][j] = Integer.parseInt(st.nextToken());
}
}
dfs(1, 0, 0); // x,y,d
System.out.println(answer);
}
static void dfs(int x, int y, int d) {
if (x == N - 1 && y == N - 1 && map[y][x] != 1) {
answer++;
return;
}
int[] dir = direction(d);
for (int i = dir[0]; i <= dir[1]; i++) {
int nx = x + dx[i];
int ny = y + dy[i];
if (nx >= N || ny >= N) {
continue;
}
if (map[ny][nx] == 1) {
continue;
}
if (i == 1) { // 대각선일때 주변에 벽있는지 확인
if (x != N - 1 && y != N - 1) {
if (map[y + 1][x] == 1 || map[y][x + 1] == 1) {
continue;
}
}
}
dfs(nx, ny, i);
}
}
static int[] direction(int d) { // 방향에 따른 체크범위
if (d == 0) {
return new int[] { 0, 1 }; // 가로 => 0~1(→, ↘)
}
if (d == 2) {
return new int[] { 1, 2 }; // 세로 => 1~2(↘, ↓)
} else {
return new int[] { 0, 2 }; // 대각선 => 0~2(→, ↘, ↓)
}
}
}
'Algorithm' 카테고리의 다른 글
[JAVA] 백준 4485 녹색 옷 입은 애가 젤다지? (다익스트라) (0) | 2021.09.29 |
---|---|
[JAVA] 백준 1755번 숫자놀이 (0) | 2021.09.27 |
[JAVA] 백준 7576 토마토 (BFS) (0) | 2021.09.24 |
[JAVA] 백준 1715번 카드 정렬하기 (우선순위 큐) (0) | 2021.09.20 |
Floyd 알고리즘 이론 정리 (0) | 2021.09.16 |
Comments