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
- directx
- UnrealEngine5
- 티스토리챌린지
- winapi
- 오블완
- 팰린드롬 만들기
- 1563
- Frustum
- C
- GeeksForGeeks
- IFileDialog
- UE5
- RootMotion
- RVO
- DirectX11
- softeer
- 줄 세우기
- Programmers
- const
- Unreal Engine5
- DeferredRendering
- 프로그래머스
- 언리얼엔진5
- 2294
- UnrealEngine4
- NRVO
- 백준
- algorithm
- C++
- baekjoon
Archives
- Today
- Total
목록계단 오르기 (1)
Game Develop
[Algorithm] Baekjoon 2579번 : 계단 오르기
https://www.acmicpc.net/problem/2579 2579번: 계단 오르기 계단 오르기 게임은 계단 아래 시작점부터 계단 꼭대기에 위치한 도착점까지 가는 게임이다. 과 같이 각각의 계단에는 일정한 점수가 쓰여 있는데 계단을 밟으면 그 계단에 쓰여 있는 점 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 int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n = 0; int input = 0; vector v; int dp[301] = { 0 }; cin >> n; for (int i =..
Algorithm/Baekjoon
2022. 11. 26. 20:32