-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathLabyrinth.java
99 lines (86 loc) · 2.4 KB
/
Labyrinth.java
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
import java.io.*;
import java.util.*;
public class Labyrinth{
public static int[] dX = {-1, 0, 0, 1};
public static int[] dY = {0, -1, 1, 0};
public static String dirs = "ULRD";
//Coordinates for points A and B.
public static point A = new point(-1, -1);
public static point B = new point(-1, -1);
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
PrintWriter pw = new PrintWriter(System.out);
StringTokenizer st = new StringTokenizer(br.readLine());
int N = Integer.parseInt(st.nextToken());
int M = Integer.parseInt(st.nextToken());
boolean[][] blocked = new boolean[N][M];
boolean[][] visited = new boolean[N][M];
int[][] prevMove = new int[N][M];
//Read in the grid.
for (int i = 0; i < N; i++) {
char[] S = br.readLine().toCharArray();
for (int j = 0; j < M; j++) {
if (S[j] == '#') {
blocked[i][j] = true;
} else {
blocked[i][j] = false;
if (S[j] == 'A') {
A = new point(i, j);
}
if (S[j] == 'B') {
B = new point(i, j);
}
}
}
}
Queue<point> q = new LinkedList<>();
q.add(A);
//BFS starting from point A.
while (!q.isEmpty()) {
point cur = q.poll();
for (int dir = 0; dir < 4; dir++) {
point next = new point(cur.x + dX[dir], cur.y + dY[dir]);
//Check if the next point is visit-able.
if (next.x < 0 || next.y < 0 || next.x >= N || next.y >= M) {
continue;
}
if (blocked[next.x][next.y]) {
continue;
}
if (visited[next.x][next.y]) {
continue;
}
visited[next.x][next.y] = true;
prevMove[next.x][next.y] = dir;
q.add(next);
}
}
if (visited[B.x][B.y]) {
pw.println("YES");
ArrayList<Integer> moves = new ArrayList<>();
//Now we can go backwards from B to find all the moves we made.
while ((A.x != B.x) || (A.y != B.y)) {
int prevDir = prevMove[B.x][B.y];
moves.add(prevDir);
B.x = B.x - dX[prevDir];
B.y = B.y - dY[prevDir];
}
Collections.reverse(moves);
pw.println(moves.size());
for (int i : moves) {
pw.print(dirs.charAt(i));
}
} else {
//We cannot reach point B.
pw.println("NO");
}
pw.close();
}
public static class point {
public int x, y;
public point(int x, int y) {
this.x = x;
this.y = y;
}
}
}