기술 블로그

3055번 탈출 본문

알고리즘 문제/BOJ

3055번 탈출

parkit 2018. 8. 23. 12:54
728x90
반응형

역시나 틀리면 안 되는 기본적인 BFS 문제이다.


문제에서


고슴도치는 물이 찰 예정인 칸으로 이동할 수 없다. 

즉, 다음 시간에 물이 찰 예정인 칸으로 고슴도치는 이동할 수 없다. 이동할 수 있으면 고슴도치가 물에 빠지기 때문이다. 


라고 쓰여져 있는데,


이 뜻은 물을 먼저 queue에 push를 하고, 활용하라는 뜻이다. 코드 101 ~ 106번 째 줄




https://www.acmicpc.net/problem/3055





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 <queue>
#include <cstdio>
#include <vector>
#include <cstring>
#include <string>
#include <math.h>
#include <algorithm>
 
using namespace std;
 
int R = 0, C = 0;
 
int sy = 0, sx = 0// 고슴도치 위치
 
int dy[4= { -1010 };
int dx[4= { 0-101 };
 
queue<pair<intpair<intint> > > q;
 
bool visit[2][51][51= { false, }; // visit[0]~ : 물, visit[1]~ : 고슴도치
 
char map[51][51];
 
int BFS()
{
    q.push({ 1, { sy, sx } }); // 고슴도치 위치 push
    
    visit[1][sy][sx] = true;
 
    int ret = 0;
 
    while (!q.empty())
    {
        int qSize = q.size();
 
        while (qSize--)
        {
            int r = q.front().second.first;
            int c = q.front().second.second;
            int cur = q.front().first;
 
            q.pop();
 
            if (cur == 1 && map[r][c] == 'D'// 고슴도치(1)가 비버의 굴(D)에 도착했다면
            {
                return ret;
            }
 
            for (int i = 0; i < 4; i++)
            {
                int y = r + dy[i];
                int x = c + dx[i];
 
                if (y < 0 || y >= R || x < 0 || x >= C || visit[cur][y][x]) continue;
 
                if (cur == 0// 물
                {
                    if (map[y][x] == '.')
                    {
                        visit[cur][y][x] = true;
 
                        map[y][x] = '*'// 물로 바뀐다.
 
                        q.push({ cur, {y,x} });
                    }
                }
                else if (cur == 1// 고슴도치
                {
                    if (map[y][x] == '.' || map[y][x] == 'D'// 돌(X)이나 물(*)은 못 간다
                    {
                        visit[cur][y][x] = true;
 
                        q.push({ cur,{ y, x } });
                    }
                }
            }
        }
 
        ++ret;
    }
 
    return -1;
}
 
int main(void)
{
    scanf("%d %d"&R, &C);
 
    for (int i = 0; i < R; i++)
    {
        for (int j = 0; j < C; j++)
        {
            cin >> map[i][j];
 
            if (map[i][j] == 'S')
            {
                sy = i;
                sx = j;
            }
            else if (map[i][j] == '*')
            {
                q.push({ 0, { i,j } }); // 물이므로, 0
 
                visit[0][i][j] = true;
            }
        }
    }
 
    int result = BFS();
 
    if (result == -1printf("KAKTUS\n");
    else printf("%d\n", result);
 
    return 0;
}
cs


728x90
반응형

'알고리즘 문제 > BOJ' 카테고리의 다른 글

9663번 N-Queen  (0) 2018.08.23
14888번 연산자 끼워넣기  (0) 2018.08.23
2309번 일곱 난쟁이  (0) 2018.08.23
2468번 안전 영역  (0) 2018.08.23
5214번 환승  (0) 2018.08.23