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
- 언리얼엔진5
- softeer
- Frustum
- IFileDialog
- GeeksForGeeks
- RVO
- UnrealEngine5
- 1563
- NRVO
- Unreal Engine5
- algorithm
- Programmers
- C
- 2294
- DirectX11
- UnrealEngine4
- baekjoon
- 오블완
- directx
- UE5
- const
- 백준
- 티스토리챌린지
- 팰린드롬 만들기
- 프로그래머스
- winapi
- 줄 세우기
- C++
- RootMotion
- DeferredRendering
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 11055 : 가장 큰 증가하는 부분수열 본문
https://www.acmicpc.net/problem/11055
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
|
int n;
int arr[1001] = { 0 };
int dp[1001] = { 0 };
int main()
{
ios::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
for (int i = 0; i < n; ++i)
{
cin >> arr[i];
}
int answer = arr[0];
dp[0] = arr[0];
for (int i = 1; i < n; ++i)
{
dp[i] = arr[i];
for (int j = i - 1; j >= 0; --j)
{
if (arr[j] < arr[i])
{
dp[i] = max(dp[i], dp[j] + arr[i]);
}
}
answer = max(answer, dp[i]);
}
cout << answer;
}
|
cs |
가장 길게 증가하는 부분수열이 아닌, 가장 크게 증가하는 부분수열을 구하는 문제이다.
길게 증가하는걸 잘 이해했으면 어렵지않게 풀 수 있다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 1699 : 제곱수의 합 (0) | 2023.10.17 |
---|---|
[Algorithm]Baekjoon 11051 : 이항 계수 2 (0) | 2023.10.17 |
[Algorithm]Baekjoon 11052 : 카드 구매하기 (0) | 2023.10.17 |
[Algorithm]Baekjoon 14501번 : 퇴사 (0) | 2023.10.17 |
[Algorithm]Baekjoon 1010번 : 다리 놓기 (0) | 2023.10.16 |