티스토리 뷰

https://www.acmicpc.net/problem/11053


arr[0] 부터 arr[i] 까지의 가장 긴 증가하는 부분 수열을 구하며 나아간다. (i = 0~n) 


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
#include <iostream>
#include <algorithm>
using namespace std;
 
int arr[1001];
int dp[1001];//dp[i] : a[i]를 마지막으로 하는 가장 긴 증가하는 부분 수열의 길이
int n;
 
int main()
{
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> arr[i];
    }
 
    for (int i = 0; i < n; i++) {
        dp[i] = 1;
        for (int j = 0; j < i; j++) {
            if (arr[j] < arr[i] && dp[i] < dp[j] + 1) {
                dp[i] = dp[j] + 1;
            }
        }
    }
 
    int res = 0;
    for (int i = 0; i < n; i++) {
        res = max(res, dp[i]);
    }
    cout << res;
}
cs



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
오답(시간초과)입니다.
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
 
vector<int> arr;
int dp[1001];
int n;
int result;
 
void function(int pos, int cnt) {
    if (pos >= n) return;
    
    if (dp[pos] < cnt) dp[pos] = cnt;
    result = max(result, dp[pos]);
    for (int i = pos+1; i < n; i++) {
        if (arr[pos] < arr[i]) function(i, cnt + 1);
    }
}
 
int main()
{
    cin >> n;
    int input;
    for (int i = 0; i < n; i ++ ) {
        cin >> input;
        arr.push_back(input);
    }
    function(01);
    cout << result;
}
cs


'알고리즘 > DP' 카테고리의 다른 글

BOJ)11054 가장 긴 바이토닉 부분 수열  (0) 2017.06.30
BOJ)11055 가장 큰 증가 부분 수열  (0) 2017.06.30
BOJ)2156 포도주 시식  (0) 2017.06.22
BOJ)9465 스티커(다시보기★)  (0) 2017.06.22
BOJ)2193 이친수  (0) 2017.06.22
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
«   2024/11   »
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
글 보관함