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
- directx
- 1563
- 2294
- 오블완
- UnrealEngine5
- winapi
- 줄 세우기
- NRVO
- softeer
- algorithm
- RootMotion
- 티스토리챌린지
- Unreal Engine5
- Programmers
- UnrealEngine4
- C++
- DirectX11
- RVO
- IFileDialog
- UE5
- 팰린드롬 만들기
- 언리얼엔진5
- 백준
- DeferredRendering
- const
- C
- baekjoon
- Frustum
- 프로그래머스
- GeeksForGeeks
Archives
- Today
- Total
목록동물원 (1)
Game Develop
[Algorithm] Baekjoon 1309번 : 동물원
https://www.acmicpc.net/problem/1309 1309번: 동물원 첫째 줄에 우리의 크기 N(1≤N≤100,000)이 주어진다. 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 int dp[100001][3]; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); int n = 0; cin >> n; dp[1][0] = 1; // 1번째줄에 아예 배치 X. dp[1][1] = 1; // 1번째줄의 왼쪽에 배치 dp[1][2] = 1; // 1번째줄 오른쪽 배치. for (int i = 2; i
Algorithm/Baekjoon
2023. 2. 1. 22:28