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
- UE_LOG
- C++
- dataasset
- enumasByue
- 람다
- UE4 커스텀로그
- C++최적화
- UML관련
- 언리얼엔진구조체
- 정렬알고리즘
- 선택정렬
- 알고리즘
- 애셋로드
- 언리얼가비지컬렉터
- UELOG
- 스마트포인터
- 자료구조
- 데이터애셋
- moreeffectiveC++
- stl
- 람다사용정렬
- 프로그래머스
- 정렬
- 델리게이트
- map
- 크리티컬섹션
- 강참조
- 약참조
- unorder_map
- BFS
Archives
- Today
- Total
기억을 위한 기록들
[백준 10026: 적록색약] - C++ 본문
#include<iostream>
#include<string>
#include<string.h>
using namespace std;
int n;
char map[101][101];
bool check[101][101];
int dir[4][2] = {
{-1,0}
,{0,1}
,{1,0}
,{0,-1}
};
void D2(int _x, int _y, char curChar)
{
for (int i = 0; i < 4; i++)
{
int nextX = _x + dir[i][0];
int nextY = _y + dir[i][1];
if (nextX < 0 || nextY < 0 || n <= nextX || n <= nextY)
continue;
if (!check[nextX][nextY])
{
if (curChar == 'R'&& (map[nextX][nextY] == 'R' || map[nextX][nextY] == 'G'))
{
check[nextX][nextY] = true;
D2(nextX, nextY,'G');
D2(nextX, nextY, 'R');
}
else if (curChar == 'G'&& (map[nextX][nextY] == 'R' || map[nextX][nextY] == 'G'))
{
check[nextX][nextY] = true;
D2(nextX, nextY, 'R');
D2(nextX, nextY, 'G');
}
else if (map[nextX][nextY] == curChar)
{
check[nextX][nextY] = true;
D2(nextX, nextY, curChar);
}
}
}
}
void D(int _x, int _y,char curChar)
{
for (int i = 0; i < 4; i++)
{
int nextX = _x + dir[i][0];
int nextY = _y + dir[i][1];
if (nextX < 0 || nextY < 0 || n <= nextX || n <= nextY)
continue;
if (map[nextX][nextY]==curChar && !check[nextX][nextY])
{
check[nextX][nextY] = true;
D(nextX, nextY,curChar);
}
}
}
int main() {
cin >> n;
string input;
for (int i = 0; i < n; i++)
{
cin >> input;
for (int j = 0; j < n; j++)
{
map[i][j] = input[j];
}
}
int cnt = 0;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (check[i][j] == false)
{
char curChar = map[i][j];
check[i][j] = true;
D(i, j, curChar);
cnt++;
}
}
}
cout << cnt << " ";
cnt = 0;
memset(check, false, sizeof(check));
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
if (check[i][j] == false)
{
char curChar = map[i][j];
check[i][j] = true;
D2(i, j, curChar);
cnt++;
}
}
}
cout << cnt << endl;
return 0;
}
'Coding Test - cpp > DFS' 카테고리의 다른 글
[백준 1937: 욕심쟁이 판다] - C++ (0) | 2021.02.15 |
---|---|
[백준 2573: 빙산] - C++ (0) | 2021.02.15 |
[백준 1987: 알파벳] - C++ (0) | 2021.02.15 |
[백준 2617: 구슬 찾기] - C++ (0) | 2021.02.11 |
[백준 1926: 그림] - C++ (0) | 2021.02.10 |