https://www.acmicpc.net/problem/11053
💡 내 코드(C++)
// [11053] 가장 긴 증가하는 부분 수열
// https://www.acmicpc.net/problem/11053
// dp
#include <iostream>
#include <algorithm>
using namespace std;
int main(void)
{
int n; // size of the sequence
int cnt = 1; // The length of the longest incremental sequence of the sequence A
int dp[1001], arr[1001];
int num = 0;
dp[0] = 1;
cin >> n;
for (int i = 0; i < n; i++) {
cin >> arr[i];
}
for (int i = 0; i < n; i++) {
int maxl = 0;
for (int j = 0; j < i; j++) {
if (arr[j] < arr[i])
maxl = max(maxl, dp[j]);
}
dp[i] = maxl + 1;
}
for (int i = 0; i < n; i++) {
if (dp[i] > num)
num = dp[i];
}
cout << num << endl;
}
반응형
'Baekjoon > DP' 카테고리의 다른 글
[11055] 가장 큰 증가 부분 수열 (0) | 2020.05.30 |
---|---|
[11054] 가장 긴 바이토닉 부분 수열 (0) | 2020.05.30 |
[11051] 이항 계수 2 (0) | 2020.05.24 |
[11048] 이동하기 (0) | 2020.05.24 |
[14501] 퇴사(C++) (0) | 2020.05.23 |