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
- UE5
- GeeksForGeeks
- NRVO
- 팰린드롬 만들기
- DeferredRendering
- baekjoon
- IFileDialog
- C
- RVO
- DirectX11
- 1563
- const
- 언리얼엔진5
- Frustum
- 2294
- RootMotion
- winapi
- 티스토리챌린지
- Programmers
- directx
- softeer
- 프로그래머스
- 오블완
- UnrealEngine5
- algorithm
- C++
- UnrealEngine4
- Unreal Engine5
- 백준
- 줄 세우기
Archives
- Today
- Total
목록15989 (1)
Game Develop
[Algorithm]Baekjoon 15989번 :: 1,2,3 더하기 4
https://www.acmicpc.net/problem/15989 15989번: 1, 2, 3 더하기 4 정수 4를 1, 2, 3의 합으로 나타내는 방법은 총 4가지가 있다. 합을 나타낼 때는 수를 1개 이상 사용해야 한다. 합을 이루고 있는 수의 순서만 다른 것은 같은 것으로 친다. 1+1+1+1 2+1+1 (1+1+2, 1+2+1) 2+2 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 int t, n; vector answers; int dp[10001][4] = { 0 }; int main() { ios::s..
Algorithm/Baekjoon
2024. 1. 20. 21:38