-
Notifications
You must be signed in to change notification settings - Fork 0
/
swexpert_1824.java
232 lines (223 loc) · 5.42 KB
/
swexpert_1824.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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
package com.ssafy.algo;
import java.io.BufferedReader;
import java.io.InputStreamReader;
import java.util.ArrayList;
public class swexpert_1824 {
static class KeyList {
ArrayList<String> key;
}
static char map[][] = new char[20][20];
static KeyList[][] keyList = new KeyList[20][20];
private static int R;
private static int C;
private static String res;
private static int memory;
public static void main(String[] args) throws Exception {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
int T = Integer.parseInt(br.readLine().trim());
for (int tc = 1; tc <= T; ++tc) {
// data input
String s[] = br.readLine().trim().split(" ");
R = Integer.parseInt(s[0]);
C = Integer.parseInt(s[1]);
boolean flag = false;
for (int i = 0; i < R; ++i) {
String str = br.readLine().trim();
for (int j = 0; j < str.length(); ++j) {
map[i][j] = str.charAt(j);
keyList[i][j] = new KeyList();
keyList[i][j].key = new ArrayList<>();
if (map[i][j] == '@')
flag = true;
}
}
// solve
res = "NO";
memory = 0;
if (flag)
dfs(0, 0, 1);
// data output
System.out.println("#" + tc + " " + res);
}
}
private static void dfs(int r, int c, int dir) {
if (res.equals("YES"))
return;
// 이전에 똑같은 방향과 키로 들어왔을 경우 NO
for (int i = 0; i < keyList[r][c].key.size(); ++i) {
if (keyList[r][c].key.get(i).equals(memory + "" + dir + "")) {
res = "NO";
return;
}
}
// 현재 이동 키 추가
keyList[r][c].key.add(memory + "" + dir + "");
int tempMem = memory;
if (map[r][c] == '@') { // 종료 조건
res = "YES";
return;
}
else if (map[r][c] >= '0' && map[r][c] <= '9') { // 숫자일 경우
memory = map[r][c] - '0';
if (dir == 0) {
if (c - 1 >= 0)
dfs(r, c - 1, 0);
else
dfs(r, C - 1, 0);
} else if (dir == 1) {
if (c + 1 < C)
dfs(r, c + 1, 1);
else
dfs(r, 0, 1);
} else if (dir == 2) {
if (r - 1 >= 0)
dfs(r - 1, c, 2);
else
dfs(R - 1, c, 2);
} else if (dir == 3) {
if (r + 1 < R)
dfs(r + 1, c, 3);
else
dfs(0, c, 3);
}
} else if (map[r][c] == '<') { // 좌측일 경우
if (c - 1 >= 0)
dfs(r, c - 1, 0);
else
dfs(r, C - 1, 0);
} else if (map[r][c] == '>') { // 우측일 경우
if (c + 1 < C)
dfs(r, c + 1, 1);
else
dfs(r, 0, 1);
} else if (map[r][c] == '^') { // 상측일 경우
if (r - 1 >= 0)
dfs(r - 1, c, 2);
else
dfs(R - 1, c, 2);
} else if (map[r][c] == 'v') { // 하측일 경우
if (r + 1 < R)
dfs(r + 1, c, 3);
else
dfs(0, c, 3);
} else if (map[r][c] == '_') { // 메모리에 0이 저장되어 있으면 이동 방향을 오른쪽으로 바꾸고, 아니면 왼쪽으로 바꾼다.
if (memory == 0) {
if (c + 1 < C)
dfs(r, c + 1, 1);
else
dfs(r, 0, 1);
} else {
if (c - 1 >= 0)
dfs(r, c - 1, 0);
else
dfs(r, C - 1, 0);
}
} else if (map[r][c] == '|') { // 메모리에 0이 저장되어 있으면 이동 방향을 아래쪽으로 바꾸고, 아니면 위쪽으로 바꾼다.
if (memory == 0) {
if (r + 1 < R)
dfs(r + 1, c, 3);
else
dfs(0, c, 3);
} else {
if (r - 1 >= 0)
dfs(r - 1, c, 2);
else
dfs(R - 1, c, 2);
}
} else if (map[r][c] == '?') { // 이동 방향을 상하좌우 중 하나로 무작위로 바꾼다. 방향이 바뀔 확률은 네 방향 동일하다.
// 좌측
if (c - 1 >= 0)
dfs(r, c - 1, 0);
else
dfs(r, C - 1, 0);
memory = tempMem;
// 우측
if (c + 1 < C)
dfs(r, c + 1, 1);
else
dfs(r, 0, 1);
memory = tempMem;
// 상측
if (r - 1 >= 0)
dfs(r - 1, c, 2);
else
dfs(R - 1, c, 2);
memory = tempMem;
// 하측
if (r + 1 < R)
dfs(r + 1, c, 3);
else
dfs(0, c, 3);
memory = tempMem;
} else if (map[r][c] == '.') { // 아무 것도 하지 않는다.
if (dir == 0) {
if (c - 1 >= 0)
dfs(r, c - 1, 0);
else
dfs(r, C - 1, 0);
} else if (dir == 1) {
if (c + 1 < C)
dfs(r, c + 1, 1);
else
dfs(r, 0, 1);
} else if (dir == 2) {
if (r - 1 >= 0)
dfs(r - 1, c, 2);
else
dfs(R - 1, c, 2);
} else if (dir == 3) {
if (r + 1 < R)
dfs(r + 1, c, 3);
else
dfs(0, c, 3);
}
} else if (map[r][c] == '+') { // 메모리에 저장된 값에 1을 더한다. 만약 더하기 전 값이 15이라면 0으로 바꾼다.
memory = (memory + 1) % 16;
if (dir == 0) {
if (c - 1 >= 0)
dfs(r, c - 1, 0);
else
dfs(r, C - 1, 0);
} else if (dir == 1) {
if (c + 1 < C)
dfs(r, c + 1, 1);
else
dfs(r, 0, 1);
} else if (dir == 2) {
if (r - 1 >= 0)
dfs(r - 1, c, 2);
else
dfs(R - 1, c, 2);
} else if (dir == 3) {
if (r + 1 < R)
dfs(r + 1, c, 3);
else
dfs(0, c, 3);
}
} else if (map[r][c] == '-') { // 메모리에 저장된 값에 1을 뺀다. 만약 빼기 전 값이 0이라면 15로 바꾼다.
memory = (memory + 15) % 16;
if (dir == 0) {
if (c - 1 >= 0)
dfs(r, c - 1, 0);
else
dfs(r, C - 1, 0);
} else if (dir == 1) {
if (c + 1 < C)
dfs(r, c + 1, 1);
else
dfs(r, 0, 1);
} else if (dir == 2) {
if (r - 1 >= 0)
dfs(r - 1, c, 2);
else
dfs(R - 1, c, 2);
} else if (dir == 3) {
if (r + 1 < R)
dfs(r + 1, c, 3);
else
dfs(0, c, 3);
}
}
memory = tempMem; // current memory recover
}
}