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



위의 문제는 가장 긴 증가하는 부분 수열 문제와 비슷하다.

다만 차이점은 점화식을 세울 때, 길이로 i번째의 dp값을 계산하지 않고 합으로 계산하면 된다.


문제의 접근 방법은 이전에 올렸던 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
27
28
29
30
31
#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;
 
int main(){
    
    int N;
    cin>>N;
 
    vector<int> arr(N,0);
    vector<int> dp(N,0);
    for(int i=0;i<N;i++)
        scanf("%d",&arr[i]);
    
    int ans=0;
    for(int i=0;i<N;i++){
        dp[i]=arr[i];
        
        for(int j=0;j<i;j++){
            if(arr[i]>arr[j]){
                dp[i]=max(dp[i],dp[j]+arr[i]);
            }
        }
        ans=max(ans,dp[i]);
    }
    
    cout<<ans<<endl;
    return 0;
}
 
cs




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

백준 1520번 - 내리막길  (2) 2018.03.03
백준 1965번 - 상자넣기  (0) 2018.02.10
백준 1699번 - 제곱수의 합  (0) 2018.01.29
백준 2133번 - 타일 채우기  (4) 2018.01.29
백준 11048번 - 이동하기  (0) 2018.01.28

+ Recent posts