https://www.acmicpc.net/problem/1965
풀이:
- b[i] 가 i 번째 상자를 골랐을 때의 상자의 최대 갯수라고 하자.
- b[i] = b[i] + 0~i 번째 까지 중 가장 큰 값 이다.
코드:
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
|
#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;
}
|