# 유형 : 시뮬레이션 + BFS
# 난이도 : 골드 V
# 코드 설명은 주석으로 써놨음. 캐릭터를 우선 9방향으로 이동가능한 곳으로 이동해준 다음 벽을 이동시켜주면 된다. 이 때 벽이 한개도 없다면 무조건 성공이다.
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
|
package bj;
import java.awt.Point;
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.util.LinkedList;
import java.util.Queue;
public class p16954 {
static int moveX[] = {0,1,1,1,0,-1,-1,-1,0};
static int moveY[] = {-1,-1,0,1,1,1,0,-1,0};
static char arr[][];
static Point start = new Point(1,8);
static Queue<Point> Wall = new LinkedList<>();
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
arr = new char[9][9];
for(int i=1; i<=8; i++) {
String str = br.readLine();
for(int j=1; j<=8; j++) {
arr[i][j] = str.charAt(j-1);
if(arr[i][j] == '#')
Wall.add(new Point(j,i));
}
}
bfs();
}
private static void bfs() {
// TODO Auto-generated method stub
Queue<Point> queue = new LinkedList<Point>();
queue.add(start);
while(true) {
// 욱제의 캐릭터를 갈 수 있는 곳 다 가주는 딘계
while(!queue.isEmpty()) {
Point po = queue.poll();
if(po.x == 8 && po.y == 1) {
// System.out.println("here");
System.out.println("1");
return;
}
if(arr[po.y][po.x] == '#')
continue;
// 상하좌우, 대각선, 제자리
for(int d=0; d<9; d++) {
int newY = po.y + moveY[d];
int newX = po.x + moveX[d];
if(newY<1 || newY>8 || newX<1 || newX>8)
continue;
//여기서 미리 queue에 넣어줘도 되긴 하는데 나중에 벽 움직이고 제거해줘야해서 뒤에서 하는 게 시간적으로 효율
if(arr[newY][newX] == '.')
arr[newY][newX] = '*';
}
}
// 벽이 아예 없으면 무조건 도달할 수 있다.
if(Wall.size() == 0){
// System.out.println("another");
System.out.println("1");
return;
}
int len = Wall.size();
for(int i=0; i<len; i++) {
Point p = Wall.poll();
if(p.y + 1 != 9) {
arr[p.y][p.x] = '.';
arr[p.y+1][p.x] = '#';
Wall.add(new Point(p.x, p.y+1));
}
}
// 욱제의 캐릭터가 있는 위치를 큐에 넣는다
for(int i=1; i<=8; i++) {
for(int j=1; j<=8; j++) {
if(arr[i][j] == '*') {
queue.add(new Point(j,i));
}
}
}
// 욱제 캐릭터가 없으면 불가능
if(queue.size() == 0) {
System.out.println(0);
return;
}
}
}
}
|
cs |
'백준' 카테고리의 다른 글
#백준_10835 카드게임 - Java 자바 (0) | 2020.04.04 |
---|---|
#백준_17142 연구소 3 - Java 자바 (0) | 2020.04.03 |
#백준_3085 사탕 게임 - Java 자바 (0) | 2020.03.28 |
#백준_17143 낚시왕 - Java 자바 (0) | 2020.03.26 |
#백준_14890 경사로 - Java 자바 (0) | 2020.03.25 |