Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 스마트포인터
- 언리얼엔진구조체
- C++최적화
- UE_LOG
- 선택정렬
- 언리얼가비지컬렉터
- 데이터애셋
- 프로그래머스
- BFS
- UE4 커스텀로그
- 정렬
- 정렬알고리즘
- moreeffectiveC++
- 약참조
- dataasset
- 람다사용정렬
- enumasByue
- unorder_map
- 크리티컬섹션
- C++
- UML관련
- UELOG
- 자료구조
- 알고리즘
- 람다
- stl
- map
- 강참조
- 델리게이트
- 애셋로드
Archives
- Today
- Total
기억을 위한 기록들
[백준 16918: 봄버맨] - C++ 본문
#include<iostream>
#include<string>
#include<queue>
using namespace std;
string map[200][200];
int dir[4][2] = {
{-1,0}
,{0,1}
,{1,0}
,{0,-1}
};
int main() {
int r, c, n;
string input;
cin >> r >> c >> n;
//입력
for (int i = 0; i < r; i++)
{
cin >> input;
for (int j = 0; j < c; j++)
{
map[i][j] = input[j];
}
}
int curTime = 1; //첫 폭탄 1초 경과
queue<pair<int, int>> q;
while (curTime < n)
{
for (int i = 0; i < r; i++)
{
for (int j = 0; j < c; j++)
{
if (map[i][j] == "O")
{
q.push({ i,j });
}
else
{
map[i][j] = "O";
}
}
}
if (n <= ++curTime) //새로운 폭탄 1초 경과
{
break;
}
while (!q.empty())
{
int curX = q.front().first;
int curY = q.front().second;
q.pop();
map[curX][curY] = '.';
for (int i = 0; i < 4; i++)
{
int nextX = curX + dir[i][0];
int nextY = curY + dir[i][1];
if (nextX < 0 || nextY < 0 || r <= nextX || c <= nextY)
continue;
if (map[nextX][nextY] == "O")
{
map[nextX][nextY] = '.';
}
}
}
curTime++; //놓여진 폭탄 터진 후 1초
}
for (int i = 0; i < r; i++)
{
for (int j = 0; j < c; j++)
{
cout << map[i][j];
}
cout << "\n";
}
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 카카오프렌즈 컬러링북 (0) | 2021.10.05 |
---|---|
[프로그래머스 lv 2 ] - 게임 맵 최단거리 (0) | 2021.04.20 |
[백준 3184: 양] - C++ (0) | 2021.03.04 |
[백준 18352: 특정 거리의 도시찾기] - C++ (0) | 2021.02.25 |
[프로그래머스 lv2] 네트워크 - c++ (0) | 2021.02.16 |