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
- 1563
- softeer
- Frustum
- C
- 백준
- 프로그래머스
- 2294
- 줄 세우기
- winapi
- UnrealEngine5
- 티스토리챌린지
- DirectX11
- 언리얼엔진5
- NRVO
- Programmers
- UE5
- 오블완
- C++
- directx
- GeeksForGeeks
- DeferredRendering
- algorithm
- RVO
- UnrealEngine4
- Unreal Engine5
- 팰린드롬 만들기
- const
- RootMotion
- baekjoon
- IFileDialog
Archives
- Today
- Total
목록극장 좌석 (1)
Game Develop
[Algorithm]Baekjoon 2302번 :: 극장 좌석
https://www.acmicpc.net/problem/2302 2302번: 극장 좌석 주어진 조건을 만족하면서 사람들이 좌석에 앉을 수 있는 방법의 가짓수를 출력한다. 방법의 가짓수는 2,000,000,000을 넘지 않는다. (2,000,000,000 < 231-1) 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 32 33 34 35 36 37 38 39 40 41 42 43 44 int n, m, fixedSeatPositions; int dp[41] = { 0 }; int main() { ios::sync_with_stdio(false); cin.tie(NULL); ..
Algorithm/Baekjoon
2023. 12. 30. 04:37