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++
- 수학
- 문자열
- 그리디 알고리즘
- XR Interaction Toolkit
- 트리
- DFS
- Unreal Engine 5
- ue5
- 투 포인터
- 브루트포스
- 다이나믹 프로그래밍
- 유니온 파인드
- 우선순위 큐
- VR
- 그래프
- BFS
- 알고리즘
- 시뮬레이션
- 스택
- 백준
- 재귀
- 유니티
- 누적 합
- 다익스트라
- 구현
- 백트래킹
- Team Fortress 2
- 정렬
- 자료구조
Archives
- Today
- Total
목록백준 14494 C++ (1)
1일1알
백준 14494번 다이나믹이 뭐에요? C++
https://www.acmicpc.net/problem/14494 14494번: 다이나믹이 뭐예요? (1, 1)에서 (n, m)에 도달하는 경우의 수를 구하여라. 단, 경우의 수가 엄청 커질 수 있으므로 경우의 수를 1,000,000,007(=109+7)로 나눈 나머지를 출력한다. www.acmicpc.net dp #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 divVal = 1000000007;..
알고리즘
2023. 2. 5. 11:54