Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- winapi
- 언리얼엔진5
- IFileDialog
- UE5
- 줄 세우기
- 오블완
- 티스토리챌린지
- 백준
- UnrealEngine4
- 프로그래머스
- softeer
- DirectX11
- C++
- DeferredRendering
- NRVO
- GeeksForGeeks
- UnrealEngine5
- 2294
- const
- Unreal Engine5
- baekjoon
- RVO
- algorithm
- directx
- 팰린드롬 만들기
- Programmers
- 1563
- C
- RootMotion
- Frustum
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 1890번 : 점프 본문
https://www.acmicpc.net/problem/1890
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
int n;
int arr[101][101] = { 0 };
long long dp[101][101] = { 0 };
long long DFS(int curY, int curX)
{
if (curY == n - 1 && curX == n - 1)
{
return 1;
}
if (dp[curY][curX] != -1) return dp[curY][curX];
dp[curY][curX] = 0;
if (curX + arr[curY][curX] < n) // 오른쪽 점프
{
dp[curY][curX] += DFS(curY, curX + arr[curY][curX]);
}
if (curY + arr[curY][curX] < n) // 아래 점프
{
dp[curY][curX] += DFS(curY + arr[curY][curX], curX);
}
return dp[curY][curX];
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for (int i = 0; i < n; ++i)
{
for (int j = 0; j < n; ++j)
{
cin >> arr[i][j];
}
}
for (int i = 0; i < 101; ++i)
{
for (int j = 0; j < 101; ++j)
{
dp[i][j] = -1;
}
}
DFS(0, 0);
cout << dp[0][0];
}
|
cs |
바로 이전에 풀었던 문제랑 조건만 다르고 사실상 같은 문제이다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 2225번 : 합분해 (0) | 2023.04.24 |
---|---|
[Algorithm] Baekjoon 1965번 : 상자넣기 (0) | 2023.04.24 |
[Algorithm] Baekjoon 1520번 : 내리막 길 (0) | 2023.04.23 |
[Algorithm] Baekjoon 2294번 : 동전 2 (0) | 2023.04.23 |
[Algorithm] Baekjoon 2293번 : 동전 1 (0) | 2023.04.23 |