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