*구슬은 같은 위치에 있으면 안되기 때문에 더 멀리서 온 구슬을 뒤로 보낸다. (그 자리에서 못 움직였을 경우도 있기 때문에)
*두 구슬이 같은 위치일 때 구멍이면 다른 방향으로 움직인다.
*구슬은 기울여지는 방향에 따라 움직이기 때문에 while 반복문으로 움직였다. 이때, 바로 움직이는 게 아니라 현재 칸이 O라면 검사를 하고(붉은 구슬이 구멍에 있는지, 두 구슬이 동시에 빠지진 않았는지..) , 움직일 칸이 #이라면 움직이지 않아야 한다. (조건검사)
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
|
#include <iostream>
#include <vector>
#include <queue>
#define INF 987654321
using namespace std;
int n, m, ans = INF;
char map[11][11];
typedef pair<int, int> pp;
typedef pair<pp, pp> pppp;
bool visited[11][11][11][11];
pp red, blue;
int dx[4] = {-1, 1, 0, 0}, dy[4] = {0, 0, -1, 1};
void bfs()
{
int cnt = 0;
queue<pppp> q;
q.push(pppp(red, blue));
//빨간구슬, 파란 구슬을 기울기에 따라 기울인다.
while (!q.empty())
{
int size = q.size();
while (size--)
{
//빨간구슬이 0을 만날 때가지
pp red = q.front().first;
pp blue = q.front().second;
q.pop();
{
{
ans = min(ans, cnt);
}
}
for (int i = 0; i < 4; i++)
{
while (map[nrx + dx[i]][nry + dy[i]] != '#' && map[nrx][nry] != 'O')
{
nrx += dx[i];
nry += dy[i];
}
while (map[nbx + dx[i]][nby + dy[i]] != '#' && map[nbx][nby] != 'O')
{
nbx += dx[i];
nby += dy[i];
}
if (nrx == nbx && nry == nby)
{
if (map[nrx][nry] == 'O')
continue;
//만났으면
//더 멀리서 온 친구가 뒤로 간다.
{
nrx -= dx[i];
nry -= dy[i];
}
else
{
nbx -= dx[i];
nby -= dy[i];
}
}
if (visited[nrx][nry][nbx][nby])
continue;
visited[nrx][nry][nbx][nby] = true;
q.push(pppp(pp(nrx, nry), pp(nbx, nby)));
}
}
cnt++;
}
}
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(0);
cin >> n >> m;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < m; j++)
{
cin >> map[i][j];
if (map[i][j] == 'R')
{
red = pp(i, j);
}
else if (map[i][j] == 'B')
{
blue = pp(i, j);
}
}
}
bfs();
if (ans == INF) cout << -1 << '\n';
else cout << ans << '\n';
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
도움이 된 TC
8 6
######
#BO..#
#.####
#.#..#
#R...#
####.#
#.#..#
######