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
- C++
- DirectX11
- directx
- 오블완
- RVO
- IFileDialog
- NRVO
- Unreal Engine5
- 줄 세우기
- baekjoon
- 언리얼엔진5
- DeferredRendering
- const
- 팰린드롬 만들기
- GeeksForGeeks
- algorithm
- softeer
- UE5
- 1563
- winapi
- Programmers
- 프로그래머스
- UnrealEngine4
- 티스토리챌린지
- C
- UnrealEngine5
- RootMotion
- Frustum
- 백준
- 2294
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 16918번 :: 봄버맨 본문
https://www.acmicpc.net/problem/16918
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
|
struct Node
{
int y;
int x;
};
int dir[4][2] = { {-1,0}, {1,0}, {0,-1}, {0,1} };
char arr[201][201];
int r, c, n;
queue<Node> prevAddedNodes;
void print()
{
for (int i = 0; i < r; ++i)
{
for (int j = 0; j < c; ++j)
{
printf("%c", arr[i][j]);
}
printf("\n");
}
}
void setBomb()
{
for (int i = 0; i < r; ++i)
{
for (int j = 0; j < c; ++j)
{
if (arr[i][j] == '.')
{
arr[i][j] = 'O';
}
}
}
}
void explode()
{
while (!prevAddedNodes.empty())
{
int curY = prevAddedNodes.front().y;
int curX = prevAddedNodes.front().x;
prevAddedNodes.pop();
arr[curY][curX] = '.';
for (int i = 0; i < 4; ++i)
{
int nextY = curY + dir[i][0];
int nextX = curX + dir[i][1];
if (nextY < 0 || nextY >= r) continue;
if (nextX < 0 || nextX >= c) continue;
arr[nextY][nextX] = '.';
}
}
// 터트린다음 다음 터트릴거 저장.
for (int i = 0; i < r; ++i)
{
for (int j = 0; j < c; ++j)
{
if (arr[i][j] == 'O')
{
prevAddedNodes.push({ i,j });
}
}
}
}
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0);
cin >> r >> c >> n;
for (int i = 0; i < r; ++i)
{
for (int j = 0; j < c; ++j)
{
cin >> arr[i][j];
if (arr[i][j] == 'O')
{
prevAddedNodes.push({ i,j});
}
}
}
if (n == 1)
{
print();
return 0;
}
int time = 1;
while (1)
{
++time;
if (time > n) break;
if (time % 2 == 0) // 폭탄설치
{
setBomb();
}
else // 폭탄 폭발
{
explode();
}
}
print();
return 0;
}
|
cs |
time에 맞춰서 필요한만큼 체크하는식으로 깔끔하게 짜려했는데, 뭔가 뾰족한 수가 안떠올라서 그냥 필요할때마다 R*C 탐색하게 했다. 통과는 한다만, R이랑 C값이 매우 크면 아마... ANS를 못받을수도 있다
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 18428번 :: 감시 피하기 (1) | 2023.05.10 |
---|---|
[Algorithm]Baekjoon 16967번 :: 배열 복원하기 (0) | 2023.05.10 |
[Algorithm]Baekjoon 3109번 :: 빵집 (0) | 2023.05.09 |
[Algorithm]Baekjoon 17182번 :: 우주 탐사선 (0) | 2023.05.09 |
[Algorithm]Baekjoon 14466번 :: 소가 길을 건너간 이유 6 (0) | 2023.05.09 |