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
- RVO
- DirectX11
- RootMotion
- softeer
- UnrealEngine5
- 팰린드롬 만들기
- Unreal Engine5
- 언리얼엔진5
- UE5
- const
- UnrealEngine4
- C++
- Programmers
- GeeksForGeeks
- IFileDialog
- Frustum
- C
- winapi
- 티스토리챌린지
- directx
- 2294
- 프로그래머스
- 백준
- 줄 세우기
- baekjoon
- 1563
- algorithm
- 오블완
- DeferredRendering
- NRVO
Archives
- Today
- Total
목록상자넣기 (1)
Game Develop
[Algorithm] Baekjoon 1965번 : 상자넣기
https://www.acmicpc.net/problem/1965 1965번: 상자넣기 정육면체 모양의 상자가 일렬로 늘어서 있다. 상자마다 크기가 주어져 있는데, 앞에 있는 상자의 크기가 뒤에 있는 상자의 크기보다 작으면, 앞에 있는 상자를 뒤에 있는 상자 안에 넣을 수가 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 int n; int boxes[1001] = { 0 }; int dp[1001] = { 0 }; int main() { ios::sync_with_stdio(false); cin.tie(0); cout.tie(0); cin >..
Algorithm/Baekjoon
2023. 4. 24. 00:18