Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 이클립스
- Java
- CMD
- 날짜일수
- 21278
- Error
- 소가길을건너간이유6
- documentationpluginsbootstrapper
- to display the conditions report re-run your application with 'debug' enabled
- 20055
- Eclipse
- 2108_통계학
- 별자리 만들기
- Error fetching remote repo 'origin'
- docker
- 설정
- 2167. 2차원 배열의 합
- 18222
- 백준
- 투에모스문자열
- dockercompose
- SpringBoot
- 알고리즘
- 14466
- EC2
- 프로그래머스
- jenkins
- 호석이두마리치킨
- 자바
- 이산수학
Archives
- Today
- Total
계단을 오르듯이
17836. 공주님을 구해라 본문
- 검을 가지고 다시 왔던 길을 가야할 수 있기 때문에 방문처리를 3차원으로 해주는 것이 핵심 포인트였다.
package baekjoon;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
import java.util.StringTokenizer;
public class B_17836_공주님을구해라 {
public static void main(String[] args) throws Exception {
BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
StringBuilder sb = new StringBuilder();
StringTokenizer st = new StringTokenizer(in.readLine(), " ");
int N = Integer.parseInt(st.nextToken());
int M = Integer.parseInt(st.nextToken());
int T = Integer.parseInt(st.nextToken());
int[][] arr = new int[N][M];
for (int i = 0; i < N; i++) {
st = new StringTokenizer(in.readLine(), " ");
for (int j = 0; j < M; j++) {
arr[i][j] = Integer.parseInt(st.nextToken());
}
}
int result = bfs(N, M, T, arr);
if (result == -1)
sb.append("Fail");
else
sb.append(result);
System.out.println(sb);
}
private static int bfs(int N, int M, int T, int[][] arr) {
int[][] dir = { { -1, 0 }, { 1, 0 }, { 0, -1 }, { 0, 1 } };
Queue<Node> q = new LinkedList<>();
boolean[][][] visited = new boolean[N][M][2];
// 검을 가지고 다시 가야할 수 있는 경우가 있으므로
// 검이 없는 상황에서 이미 방문하였다면 중복 방문으로 그 곳을 갈 수 없기 때문에
// 3차원의 배열로 해주어야 한다.
// 또한 큐에 들어있는 좌표에서 검의 여부에 따라 연산을 각각 수행해야 하므로
// Node안에 검의 유무를 같이 넣어주어야 한다.
q.offer(new Node(0, 0, 0, 0));
visited[0][0][0] = true;
while (!q.isEmpty()) {
Node now = q.poll();
int y = now.y;
int x = now.x;
int cnt = now.cnt;
int isPass = now.isPass;
if (cnt > T) // 시간 초과
return -1;
if (y == N - 1 && x == M - 1) // 공주를 구하면
return cnt;
for (int i = 0; i < 4; i++) {
int my = y + dir[i][0];
int mx = x + dir[i][1];
if (my < 0 || mx < 0 || my >= N || mx >= M || visited[my][mx][isPass])
continue;
if (isPass == 0 && arr[my][mx] == 1) // 검이 없고 벽이면
continue;
visited[my][mx][isPass] = true;
if (arr[my][mx] == 2) { // 검을 잡으면
q.offer(new Node(my, mx, cnt + 1, 1));
continue;
}
q.offer(new Node(my, mx, cnt + 1, isPass));
}
}
return -1; // 공주를 구하지 못하면 - 공주의 좌표까지 가지 못할 경우
}
static class Node {
int y, x, cnt, isPass;
public Node(int y, int x, int cnt, int isPass) {
super();
this.y = y;
this.x = x;
this.cnt = cnt;
this.isPass = isPass;
}
}
}
'알고리즘 > 백준_JAVA' 카테고리의 다른 글
17073. 나무 위의 빗물 (0) | 2021.12.31 |
---|---|
17478. 재귀함수가 뭔가요? (0) | 2021.12.31 |
18429. 근손실 (0) | 2021.12.31 |
20154. 이 구역의 승자는 누구야 (0) | 2021.12.31 |
1912. 연속합 (0) | 2021.12.31 |