Game Develop

[Algorithm] Baekjoon 5427번 : 불 본문

Algorithm/Baekjoon

[Algorithm] Baekjoon 5427번 : 불

MaxLevel 2023. 2. 25. 21:41

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

 

5427번: 불

상근이는 빈 공간과 벽으로 이루어진 건물에 갇혀있다. 건물의 일부에는 불이 났고, 상근이는 출구를 향해 뛰고 있다. 매 초마다, 불은 동서남북 방향으로 인접한 빈 공간으로 퍼져나간다. 벽에

www.acmicpc.net

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
struct Node
{
    int y;
    int x;
};
 
char arr[1002][1002];
int dir[4][2= { {-1,0}, {1,0}, {0,-1}, {0,1} };
int row, col;
bool isEscaped = false;
vector<Node> firePositions;
vector<Node> humanPositions;
vector<Node> candidatePositions;
 
bool checkEdge(int y, int x)
{
    if (y == 0 || y == row - 1)
    {
        return true;
    }
 
    if (x == 0 || x == col - 1)
    {
        return true;
    }
 
    return false;
}
 
void moveJ()
{
    vector<Node> temp;
 
    for (int i = 0; i < humanPositions.size(); ++i)
    {
        int curY = humanPositions[i].y;
        int curX = humanPositions[i].x;
 
        if (arr[curY][curX] == '*'continue;
 
        for (int j = 0; j < 4++j)
        {
            int nextY = curY + dir[j][0];
            int nextX = curX + dir[j][1];
 
            if (nextY < 0 || nextY == row) continue;
            if (nextX < 0 || nextX == col) continue;
            if (arr[nextY][nextX] == '#'continue;
            if (arr[nextY][nextX] == '@'continue;
            if (arr[nextY][nextX] == '*'continue;
 
            arr[nextY][nextX] = '@';
            temp.push_back({ nextY,nextX });
 
            if (checkEdge(nextY, nextX))
            {
                candidatePositions.push_back({ nextY,nextX });
            }
        }
    }
 
    humanPositions = temp;
}
 
void spreadFire()
{
    vector<Node> temp;
 
    for (int i = 0; i < firePositions.size(); ++i)
    {
        int curY = firePositions[i].y;
        int curX = firePositions[i].x;
 
        for (int j = 0; j < 4++j)
        {
            int nextY = curY + dir[j][0];
            int nextX = curX + dir[j][1];
 
            if (nextY < 0 || nextY == row) continue;
            if (nextX < 0 || nextX == col) continue;
            if (arr[nextY][nextX] == '#'continue;
            if (arr[nextY][nextX] == '*'continue;
 
            arr[nextY][nextX] = '*';
            temp.push_back({ nextY,nextX });
        }
    }
 
    firePositions = temp;
}
 
void checkCandidates()
{
    for (int i = 0; i < candidatePositions.size(); ++i)
    {
        int y = candidatePositions[i].y;
        int x = candidatePositions[i].x;
 
        if (arr[y][x] != '*')
        {
            isEscaped = true;
            return;
        }
    }
 
    candidatePositions.clear();
}
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
 
    int t = 0;
 
    cin >> t;
 
    for (int k = 0; k < t; ++k)
    {
        humanPositions.clear();
        firePositions.clear();
        candidatePositions.clear();
        isEscaped = false;
        
        cin >> col >> row;
 
        for (int i = 0; i < row; ++i)
        {
            for (int j = 0; j < col; ++j)
            {
                cin >> arr[i][j];
 
                if (arr[i][j] == '@')
                {
                    humanPositions.push_back({ i,j });
                }
                else if (arr[i][j] == '*')
                {
                    firePositions.push_back({ i,j });
                }
            }
        }
 
        if (checkEdge(humanPositions[0].y, humanPositions[0].x))
        {
            printf("1\n");
            continue;
        }
 
        bool isImpossible = false;
        int count = 0;
 
        while (1)
        {
            if (humanPositions.size() == 0)
            {
                isImpossible = true;
                break;
            }
 
            ++count;
 
            moveJ();
            spreadFire();
            checkCandidates();
 
            if (isEscaped) break;
        }
 
        if (isImpossible)
        {
            printf("IMPOSSIBLE\n");
        }
        else
        {
            printf("%d\n", count + 1);
        }
    }
}
cs

바로 이전에 풀었던 불! 문제에서 테스트케이스 개수만 추가된거다.

그래서 굳이 글 안올리려했는데 실수했던게 있어서 안까먹으려고 올린다.

 

테스트케이스가 여러개 주어지는 문제에서는 main함수에서 return 사용하는것을 조심하자.

이전 문제에서 바로 탈출할 수 있으면 return 되게 해놨는데 이번 문제에서 안지워놔서 자꾸 12%에서 틀렸다고 뜨길래 조금 헤맸다..