Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 팰린드롬 만들기
- DeferredRendering
- 줄 세우기
- 프로그래머스
- 1563
- UE5
- RootMotion
- Programmers
- softeer
- GeeksForGeeks
- directx
- 2294
- IFileDialog
- Frustum
- C
- C++
- NRVO
- const
- baekjoon
- UnrealEngine5
- 언리얼엔진5
- algorithm
- DirectX11
- UnrealEngine4
- Unreal Engine5
- RVO
- 오블완
- winapi
- 티스토리챌린지
- 백준
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 5427번 : 불 본문
https://www.acmicpc.net/problem/5427
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%에서 틀렸다고 뜨길래 조금 헤맸다..
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 7562번 : 나이트의 이동 (0) | 2023.02.27 |
---|---|
[Algorithm] Baekjoon 2583번 : 영역 구하기 (0) | 2023.02.26 |
[Algorithm] Baekjoon 4179번 : 불! (0) | 2023.02.25 |
[Algorithm] Baekjoon 1926번 : 그림 (0) | 2023.02.13 |
[Algorithm] Baekjoon 14503번 : 로봇 청소기 (0) | 2023.02.13 |