https://www.acmicpc.net/problem/11054
💡 내 코드(C++)
// [11054] 가장 긴 바이토닉 부분 수열
// https://www.acmicpc.net/problem/11054
// dp
#include <iostream>
#include <algorithm>
#define MAX 1001
using namespace std;
void increase(); void decrease();
int bitonic();
int n, a[MAX] = { 0 };
int dp_inc[MAX], dp_dec[MAX];
int main(void)
{
cin >> n;
// sequence
for (int i = 0; i < n; i++) {
cin >> a[i];
}
increase(); decrease();
cout << bitonic() << endl;
}
void increase()
{
dp_inc[0] = 1;
for (int i = 0; i < n; i++) {
int maxl = 0;
for (int j = 0; j < i; j++) {
if (a[j] < a[i])
maxl = max(maxl, dp_inc[j]);
}
dp_inc[i] = maxl + 1;
}
}
void decrease()
{
dp_dec[n - 1] = 1;
for (int i = n - 1; i > 0; i--) {
int maxl = 0;
for (int j = n - 1; j > i; j--) {
if (a[j] < a[i])
maxl = max(maxl, dp_dec[j]);
}
dp_dec[i] = maxl + 1;
}
}
int bitonic()
{
int max = 0;
for (int i = 0; i < n; i++) {
if (max < dp_inc[i] + dp_dec[i])
max = dp_inc[i] + dp_dec[i]; //update
}
return max - 1;
}
반응형
'Baekjoon > DP' 카테고리의 다른 글
[11722] 가장 긴 감소하는 부분 수열 (0) | 2020.05.30 |
---|---|
[11055] 가장 큰 증가 부분 수열 (0) | 2020.05.30 |
[11053] 가장 긴 증가하는 부분 수열 (0) | 2020.05.30 |
[11051] 이항 계수 2 (0) | 2020.05.24 |
[11048] 이동하기 (0) | 2020.05.24 |