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
- c++
- 유니온 파인드
- 투 포인터
- 스택
- ue5
- Team Fortress 2
- 문자열
- 우선순위 큐
- 트리
- 시뮬레이션
- 백준
- 정렬
- 그리디 알고리즘
- 그래프
- 수학
- Unreal Engine 5
- XR Interaction Toolkit
- BFS
- 다이나믹 프로그래밍
- 다익스트라
- 누적 합
- 재귀
- 유니티
- 브루트포스
- 백트래킹
- 구현
- DFS
- 알고리즘
- VR
- 자료구조
Archives
- Today
- Total
목록Dance Dance Revolution C++ (1)
1일1알

상당히 어려운 dp문제였다. cache[ i ][ j ][ k ] 를 i번째 지시사항에서 왼쪽발은 j, 오른쪽발은 k일때의 값으로 하고 풀었다. #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; const int INF = 0x3fffffff; int cnt = 0; int power[5][5] = { {INF,2,2,2,2}, {INF,1,3,4,3}, {INF,3,1,3,4}, {INF,4,3,1,3}, {INF,3..
알고리즘
2022. 7. 21. 12:30