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
- NRVO
- C++
- IFileDialog
- DirectX11
- 1563
- 2294
- const
- UnrealEngine5
- algorithm
- 오블완
- 백준
- GeeksForGeeks
- Frustum
- RootMotion
- 언리얼엔진5
- Programmers
- C
- softeer
- 프로그래머스
- winapi
- 티스토리챌린지
- 팰린드롬 만들기
- Unreal Engine5
- baekjoon
- RVO
- UnrealEngine4
- directx
- DeferredRendering
- UE5
- 줄 세우기
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