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 | 31 |
Tags
- 알고리즘
- map
- stl
- enumasByue
- C++최적화
- 스마트포인터
- 크리티컬섹션
- unorder_map
- 약참조
- 프로그래머스
- BFS
- 선택정렬
- 정렬
- UE_LOG
- UE4 커스텀로그
- moreeffectiveC++
- C++
- UELOG
- 강참조
- 데이터애셋
- UML관련
- 애셋로드
- 델리게이트
- 람다
- dataasset
- 언리얼가비지컬렉터
- 자료구조
- 람다사용정렬
- 정렬알고리즘
- 언리얼엔진구조체
Archives
- Today
- Total
기억을 위한 기록들
[백준 3184: 양] - C++ 본문
#include <iostream>
#include <queue>
#include <string>
using namespace std;
char map[251][251];
int visited[251][251];
int dir[4][2] = {
{-1,0}
,{0,1}
,{1,0}
,{0,-1}
};
int r, c;
int vCnt = 0;
int oCnt = 0;
void bfs(int _x, int _y)
{
queue < pair<int, int>> q;
visited[_x][_y] = 1;
q.push({ _x,_y });
while (!q.empty())
{
int curX = q.front().first;
int curY = q.front().second;
q.pop();
for (int i = 0; i < 4; i++)
{
int nextX = curX + dir[i][0];
int nextY = curY + dir[i][1];
if (nextY < 0 || nextX < 0 || r <= nextX || c <= nextY)
continue;
if (!visited[nextX][nextY] && (map[nextX][nextY] == '.' || map[nextX][nextY] == 'o' || map[nextX][nextY] == 'v'))
{
visited[nextX][nextY] = 1;
q.push({ nextX,nextY });
if (map[nextX][nextY] == 'o')
oCnt++;
else if (map[nextX][nextY] == 'v')
vCnt++;
}
}
}
}
int main(void)
{
cin >> r >> c;
string n;
for (int i = 0; i < r; i++)
{
cin >> n;
for (int j = 0; j < c; j++)
{
map[i][j] = n[j];
}
}
bool bcheck = false;
int vCntTotal = 0;
int oCntTotal = 0;
for (int i = 0; i < r; i++)
{
for (int j = 0; j < c; j++)
{
bcheck = false;
if (map[i][j] == 'v' && !visited[i][j])
{
vCnt = 1;
oCnt = 0;
bfs(i, j);
bcheck = true;
}
else if (map[i][j] == 'o' && !visited[i][j])
{
vCnt = 0;
oCnt = 1;
bfs(i, j);
bcheck = true;
}
if (bcheck)
{
if (vCnt >= oCnt)
{
vCntTotal += vCnt;
}
else {
oCntTotal += oCnt;
}
}
}
}
cout << oCntTotal << " " << vCntTotal << '\n';
return 0;
}
'Coding Test - cpp > BFS' 카테고리의 다른 글
[프로그래머스 lv 2 ] - 게임 맵 최단거리 (0) | 2021.04.20 |
---|---|
[백준 16918: 봄버맨] - C++ (0) | 2021.03.22 |
[백준 18352: 특정 거리의 도시찾기] - C++ (0) | 2021.02.25 |
[프로그래머스 lv2] 네트워크 - c++ (0) | 2021.02.16 |
[백준 5567: 결혼식] - C++ (0) | 2021.02.10 |