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
- 자료구조
- 람다
- 약참조
- UE4 커스텀로그
- UELOG
- BFS
- unorder_map
- 델리게이트
- 정렬
- UE_LOG
- 언리얼가비지컬렉터
- C++최적화
- UML관련
- 람다사용정렬
- enumasByue
- 언리얼엔진구조체
- 크리티컬섹션
- moreeffectiveC++
- 프로그래머스
- 강참조
- C++
- 알고리즘
- 선택정렬
- 애셋로드
- 스마트포인터
- 데이터애셋
- stl
- map
- dataasset
- 정렬알고리즘
Archives
- Today
- Total
기억을 위한 기록들
[백준 2210: 숫자판 점프] - C++ 본문
#include <iostream>
using namespace std;
int map[6][6];
int dir[4][2] = {
{-1,0}
,{0,1}
,{1,0}
,{0,-1}
};
int check[1000000];
int result;
void dfs(int x, int y, int sum, int depth) {
if (depth == 5)
{
if (check[sum] == 0)
{
check[sum] = 1;
result++;
}
return;
}
for (int i = 0; i < 4; i++) {
int nx = x + dir[i][0];
int ny = y + dir[i][1];
if (nx < 1 || ny < 1 || nx>5 || ny>5)
{
continue;
}
int nextNum = (sum * 10) + map[nx][ny];
dfs(nx, ny, nextNum, depth + 1);
}
}
int main()
{
for (int i = 1; i <= 5; i++)
{
for (int j = 1; j <= 5; j++)
{
cin >> map[i][j];
}
}
for (int i = 1; i <= 5; i++)
{
for (int j = 1; j <= 5; j++)
{
dfs(i, j, map[i][j], 0);
}
}
cout << result;
}
'Coding Test - cpp > DFS' 카테고리의 다른 글
[백준 1303: 전쟁 - 전투 ] - C++ (0) | 2021.02.25 |
---|---|
[백준 9466: 텀 프로젝트] - C++ (0) | 2021.02.19 |
[프로그래머스 lv2] 단어 변환- c++ (0) | 2021.02.16 |
[백준 1937: 욕심쟁이 판다] - C++ (0) | 2021.02.15 |
[백준 2573: 빙산] - C++ (0) | 2021.02.15 |