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