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
- 언리얼엔진5
- Programmers
- C++
- UnrealEngine4
- 티스토리챌린지
- Unreal Engine5
- winapi
- C
- 팰린드롬 만들기
- algorithm
- DeferredRendering
- UnrealEngine5
- 2294
- UE5
- NRVO
- 오블완
- RVO
- softeer
- DirectX11
- const
- IFileDialog
- 1563
- Frustum
- 백준
- 줄 세우기
- baekjoon
- directx
- GeeksForGeeks
- RootMotion
- 프로그래머스
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 11060번 : 점프 점프 본문
https://www.acmicpc.net/problem/11060
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
|
int n;
int arr[1001];
int dp[1111] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; ++i)
{
cin >> arr[i];
}
if (n == 1)
{
cout << 0;
return 0;
}
memset(dp, 0x3f, sizeof(dp));
dp[0] = 0;
int answer = 0x3f3f3f3f;
for (int i = 0; i < n; ++i)
{
for (int j = 1; j <= arr[i]; ++j)
{
dp[i + j] = min(dp[i + j], dp[i] + 1);
if (i + j >= n - 1)
{
answer = min(answer, dp[i + j]);
}
}
}
if (answer == 0x3f3f3f3f) cout << -1;
else cout << answer;
}
|
cs |
최근에 풀었던 dp문제와 업데이트방식이 유사해서 쉽게 접근할 수 있었다.
주어진 값을 이용해 뒤엣 부분을 업데이트하는 방식이다.
dp[i]는 i에 도달할 수 있는 최소의 경우의수값이 들어있다.
arr[i]에는 최대이동할 수 있는 칸수가 적혀있으니, 최대칸수가 3이라면 dp[i+1],dp[i+2],dp[i+3]에 dp[i]+1값을 업데이트하면 된다. 물론, dp[i]에는 최소값이긴 하지만, dp[i+1]이나 dp[i+2],dp[i+3]에는 이전에 이미 더 적은횟수로 도달한 경우의수가 있기 때문에 min으로 최소값업데이트하면 된다.
그리고 n값이 1일 경우, 무조건 0을 출력해야한다는걸 잊지말자.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 17142번 : 연구소 3 (1) | 2023.12.25 |
---|---|
[Algorithm]Baekjoon 2660번 : 회장 뽑기 (1) | 2023.12.24 |
[Algorithm]Baekjoon 1495번 : 기타리스트 (0) | 2023.12.14 |
[Algorithm]Baekjoon 1976번 : 여행 가자 (0) | 2023.12.13 |
[Algorithm]Baekjoon 1068번 : 트리 (0) | 2023.12.13 |