-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMain.java
146 lines (127 loc) Β· 4.79 KB
/
Main.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
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
package BFS.P1938;
import java.io.*;
import java.util.*;
public class Main {
final static int col = 0, row = 1;
static int N;
static char[][] map;
static Position start, dest;
public static void main(String[] args) throws Exception {
System.setIn(new FileInputStream("src/BFS/P1938/input.txt"));
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
N = Integer.parseInt(br.readLine());
map = new char[N+2][N+2];
for (int i = 0; i < N+2; i++) Arrays.fill(map[i], '1');
for (int i = 1; i <= N; i++) {
String line = br.readLine();
for (int j = 1; j <= N; j++) {
map[i][j] = line.charAt(j-1);
if (map[i][j] == 'B') start = setPosition(start, i, j);
else if (map[i][j] == 'E') dest = setPosition(dest, i, j);
}
}
System.out.println(bfs());
}
static int bfs() {
Queue<Position> q = new LinkedList<>();
boolean[][][] visited = new boolean[N+2][N+2][2];
int cnt = 0;
q.offer(start);
visited[start.i][start.j][start.d] = true;
while (!q.isEmpty()) {
int curSize = q.size();
while (curSize-- > 0) {
Position cur = q.poll();
if (cur.equals(dest)) return cnt;
Position to;
to = moveUp(cur);
if (to != null && !visited[to.i][to.j][to.d]) {
visited[to.i][to.j][to.d] = true;
q.offer(to);
}
to = moveDown(cur);
if (to != null && !visited[to.i][to.j][to.d]) {
visited[to.i][to.j][to.d] = true;
q.offer(to);
}
to = moveLeft(cur);
if (to != null && !visited[to.i][to.j][to.d]) {
visited[to.i][to.j][to.d] = true;
q.offer(to);
}
to = moveRight(cur);
if (to != null && !visited[to.i][to.j][to.d]) {
visited[to.i][to.j][to.d] = true;
q.offer(to);
}
to = rotate(cur);
if (to != null && !visited[to.i][to.j][to.d]) {
visited[to.i][to.j][to.d] = true;
q.offer(to);
}
}
cnt ++;
}
return 0;
}
static Position moveUp(Position p) {
if (p.d == col) {
if (map[p.i-1][p.j] == '1') return null;
} else if (map[p.i-1][p.j] == '1' || map[p.i-1][p.j+1] == '1' || map[p.i-1][p.j+2] == '1') return null;
return new Position(p.i-1, p.j, p.d);
}
static Position moveDown(Position p) {
if (p.d == col) {
if (map[p.i+3][p.j] == '1') return null;
} else if (map[p.i+1][p.j] == '1' || map[p.i+1][p.j+1] == '1' || map[p.i+1][p.j+2] == '1') return null;
return new Position(p.i+1, p.j, p.d);
}
static Position moveLeft(Position p) {
if (p.d == row) {
if (map[p.i][p.j-1] == '1') return null;
} else if (map[p.i][p.j-1] == '1' || map[p.i+1][p.j-1] == '1' || map[p.i+2][p.j-1] == '1') return null;
return new Position(p.i, p.j-1, p.d);
}
static Position moveRight(Position p) {
if (p.d == row) {
if (map[p.i][p.j+3] == '1') return null;
} else if (map[p.i][p.j+1] == '1' || map[p.i+1][p.j+1] == '1' || map[p.i+2][p.j+1] == '1') return null;
return new Position(p.i, p.j+1, p.d);
}
static Position rotate(Position p) {
if (p.d == col) {
if (map[p.i][p.j-1] == '1' || map[p.i][p.j+1] == '1' ||
map[p.i+1][p.j-1] == '1' || map[p.i+1][p.j+1] == '1' ||
map[p.i+2][p.j-1] == '1' || map[p.i+2][p.j+1] == '1') {
return null;
}
return new Position(p.i+1, p.j-1, row);
} else {
if (map[p.i-1][p.j] == '1' || map[p.i+1][p.j] == '1' ||
map[p.i-1][p.j+1] == '1' || map[p.i+1][p.j+1] == '1' ||
map[p.i-1][p.j+2] == '1' || map[p.i+1][p.j+2] == '1') {
return null;
}
return new Position(p.i-1, p.j+1, col);
}
}
static Position setPosition(Position p, int i, int j) {
if (p == null) p = new Position(i, j, 0);
else if (p.j == j) p.d = col;
else p.d = row;
return p;
}
static class Position {
int i, j, d;
public Position(int i, int j, int d) {
this.i = i;
this.j = j;
this.d = d;
}
@Override
public boolean equals(Object o) {
Position p = (Position) o;
return i == p.i && j == p.j && d == p.d;
}
}
}