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 |
Tags
- IFileDialog
- UE5
- RootMotion
- winapi
- 백준
- Programmers
- const
- baekjoon
- NRVO
- 프로그래머스
- Unreal Engine5
- algorithm
- TObjectPtr
- 1563
- softeer
- C
- UnrealEngine5
- UnrealEngine4
- GeeksForGeeks
- 언리얼엔진5
- directx
- 티스토리챌린지
- RVO
- 팰린드롬 만들기
- Frustum
- 오블완
- 줄 세우기
- DirectX11
- 2294
- C++
Archives
- Today
- Total
목록11060 (1)
Game Develop
[Algorithm]Baekjoon 11060번 : 점프 점프
https://www.acmicpc.net/problem/11060 11060번: 점프 점프 재환이가 1×N 크기의 미로에 갇혀있다. 미로는 1×1 크기의 칸으로 이루어져 있고, 각 칸에는 정수가 하나 쓰여 있다. i번째 칸에 쓰여 있는 수를 Ai라고 했을 때, 재환이는 Ai이하만큼 오른쪽으로 www.acmicpc.net 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); ci..
Algorithm/Baekjoon
2023. 12. 15. 02:25