https://www.acmicpc.net/problem/11722
풀이:
- 11053 가장 긴 증가하는 부분 수열의 문제와 똑같으므로 링크를 참고
코드:
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
|
#include <iostream>
#include <algorithm>
using namespace std;
int main(void) {
int n, temp;
cin >> n;
int a[1001] = { 0 };
int b[1001];
for (int i = 0; i < n; i++) {
cin >> a[i];
b[i] = 1;
}
for (int i = 0; i < n; i++) {
temp = 0;
for (int t = 0; t <= i; t++) {
if (a[i] < a[i - t])
temp = max(b[i - t], temp);
}
b[i] += temp;
}
for (int i = 0; i < n; i++) {
temp = max(b[i], temp);
}
cout << temp << endl;
return 0;
}
|