문제 출처 : https://www.acmicpc.net/problem/5427

 

5427번: 불

문제 상근이는 빈 공간과 벽으로 이루어진 건물에 갇혀있다. 건물의 일부에는 불이 났고, 상근이는 출구를 향해 뛰고 있다. 매 초마다, 불은 동서남북 방향으로 인접한 빈 공간으로 퍼져나간다. 벽에는 불이 붙지 않는다. 상근이는 동서남북 인접한 칸으로 이동할 수 있으며, 1초가 걸린다. 상근이는 벽을 통과할 수 없고, 불이 옮겨진 칸 또는 이제 불이 붙으려는 칸으로 이동할 수 없다. 상근이가 있는 칸에 불이 옮겨옴과 동시에 다른 칸으로 이동할 수 있다. 빌딩

www.acmicpc.net

이 문제는 BFS를 이용하여 문제를 해결 할 수 있었다.

방문 배열을 사람과 불이 이동한 것을 따로 두어서 불이 먼저 이동하고 사람이 이동하는 식으로 문제를 해결했다. 

그렇게 되면 불이 지나가려는 곳을 사람이 못 가게 할 수 있고 탈출구 까지 편안하게 이동 할 수 있다.

아래는 해당 문제를 풀이한 소스 코드이다.

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
#include<stdio.h>
#include<queue>
#pragma warning(disable:4996)
using namespace std;
int Test;
int w, h;
int visit[1001][1001];
char arr[1001][1001];
int dx[4= { 1,-1,0,0 };
int dy[4= { 0,0,1,-1 };
int flag = 0;
struct list
{
    int x;
    int y;
    int cnt = 0;
};
queue <list> fire;
queue <list> human;
void Fire()
{
    int size = fire.size();
    for (int i = 0; i < size; i++)
    {
        list temp = fire.front();
        fire.pop();
        for (int j = 0; j < 4; j++)
        {
            int nx = temp.x + dx[j];
            int ny = temp.y + dy[j];
            if (nx >= 0 && nx < h && ny >= 0 && ny < w)
            {
                if (arr[nx][ny] == '.' && visit[nx][ny] != 2)
                {
                    arr[nx][ny] = '*';
                    visit[nx][ny] = 2;
                    list A;
                    A.x = nx;
                    A.y = ny;
                    fire.push(A);
                }
                if (arr[nx][ny] == '@' && visit[nx][ny] != 2)
                {
                    arr[nx][ny] = '*';
                    visit[nx][ny] = 2;
                    list A;
                    A.x = nx;
                    A.y = ny;
                    fire.push(A);
                }
            }
        }
    }
}
void escape()
{
    int size = human.size();
    for (int i = 0; i < size; i++)
    {
        list temp = human.front();
        human.pop();
        for (int j = 0; j < 4; j++)
        {
            int nx = temp.x + dx[j];
            int ny = temp.y + dy[j];
            if (nx < 0 || nx >= h || ny < 0 || ny >= w)
            {
                flag = 1;
                printf("%d\n"temp.cnt + 1);
                return;
            }
            if (nx >= 0 && nx < h && ny >= 0 && ny < w)
            {
                if (arr[nx][ny] == '.' && visit[nx][ny] == 0)
                {
                    visit[nx][ny] = 1;
                    list A;
                    A.x = nx;
                    A.y = ny;
                    A.cnt = temp.cnt + 1;
                    human.push(A);
                }
            }
        }
    }
}
void reset()
{
    for (int i = 0; i < h; i++)
    {
        for (int j = 0; j < w; j++)
        {
            visit[i][j] = 0;
            arr[i][j] = ' ';
        }
    }
    flag = 0;
    while (!fire.empty())
        fire.pop();
    while (!human.empty())
        human.pop();
}
int main()
{
    //freopen("test.inp", "r", stdin);
    //freopen("test.out", "w", stdout);
    scanf("%d"&Test);
    for (int i = 0; i < Test; i++)
    {
        scanf("%d %d"&w, &h);
        for (int j = 0; j < h; j++)
            scanf("%s"&arr[j]);
        for (int j = 0; j < h; j++)
        {
            for (int k = 0; k < w; k++)
            {
                if (arr[j][k] == '*')
                {
                    visit[j][k] = 2;
                    list temp;
                    temp.x = j;
                    temp.y = k;
                    fire.push(temp);
                }
                if (arr[j][k] == '@')
                {
                    visit[j][k] = 1;
                    list temp;
                    temp.x = j;
                    temp.y = k;
                    human.push(temp);
                }
            }
        }
        while (!human.empty())
        {
            if (flag == 1)
                break;
            Fire();
            escape();
        }
        if (flag == 0)
            printf("IMPOSSIBLE\n");
        reset();
    }
}
 
 
 
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
블로그 이미지

뀨심볼

깃허브 주소는 : https://github.com/hhyc2 입니다~

,