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
- 다이나믹 프로그래밍
- 백준
- ue5
- 우선순위 큐
- 수학
- 브루트포스
- 그리디 알고리즘
- 스택
- DFS
- BFS
- 유니티
- 재귀
- 구현
- Team Fortress 2
- 유니온 파인드
- 백트래킹
- VR
- 트리
- 알고리즘
- 정렬
- XR Interaction Toolkit
- 자료구조
- 다익스트라
- 투 포인터
- 그래프
- 시뮬레이션
- Unreal Engine 5
- c++
- 문자열
- 누적 합
Archives
- Today
- Total
목록1 2 3 더하기 5 C++ (1)
1일1알
백준 15990번 1, 2, 3 더하기 5 C++
https://www.acmicpc.net/problem/15990 15990번: 1, 2, 3 더하기 5 각 테스트 케이스마다, n을 1, 2, 3의 합으로 나타내는 방법의 수를 1,000,000,009로 나눈 나머지를 출력한다. www.acmicpc.net 다이나믹 프로그래밍 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include using namespace std; using int64 = long long; const int64 mod = 1000000009; vector cache; int64 d..
알고리즘
2022. 11. 19. 12:43