본문 바로가기

알고리즘/백준

[BOJ 2240] 자두나무

이 문제는,

 

 

 

 

 

 

위의 형태로 재귀적으로 호출할 수 있다. 메모이제이션을 통해서, 같은 반복문을 돌지 않도록 코드를 구성하면 된다.

 

 

 

 

주의할 점은, 문제의 조건에서 1번 나무에서 무조건 시작된다고 했으므로, 2번 나무로 시작할려면 W를 1 감소시키고 시작해야 한다.

 

 

 

 

해설코드(C++).

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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
#include <iostream>
#include <cstring>
#include <algorithm>
 
using namespace std;
 
int T, W;
int arr[1001= { 0 };
int dp[1001][31][3];
 
int func(int t, int w, int cur){
    if(dp[t][w][cur] != -1)
        return dp[t][w][cur];
        
    if(t == 0)
        return 0;
        
    dp[t][w][cur] = 0;
    if(cur == 1){
        if(arr[t] == cur){
            dp[t][w][cur] = 1 + func(t - 1, w, 1);
            if(w - 1 >= 0) dp[t][w][cur] = max(dp[t][w][cur], 1 + func(t - 1, w - 1 ,2));
        }else{
            dp[t][w][cur] = func(t - 1, w, 1);
            if(w - 1 >= 0) dp[t][w][cur] = max(dp[t][w][cur], func(t - 1, w - 12));
        }
    }else{
        if(arr[t] == cur){
            dp[t][w][cur] = 1 + func(t - 1, w, 2);
            if(w - 1 >= 0) dp[t][w][cur] = max(dp[t][w][cur], 1 + func(t - 1, w - 1 ,1));
        }else{
            dp[t][w][cur] = func(t - 1, w, 2);
            if(w - 1 >= 0) dp[t][w][cur] = max(dp[t][w][cur], func(t - 1, w - 1 ,1));        
        }
    }
    
    return dp[t][w][cur];
}
 
int main() {
    cin >> T >> W;
    for(int i = 1; i <= T; i++){
        cin >> arr[i];
    }
    
    memset(dp, -1sizeof(dp));
    cout << max(func(T, W, 1), func(T, W - 12)) << endl
    
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#e5e5e5text-decoration:none">Colored by Color Scripter
 

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

[BOJ 1509] 팰린드롬 분할  (0) 2020.05.03
[BOJ 7579] 앱  (0) 2020.05.01
[BOJ 2352] 반도체 설계(이분탐색)  (0) 2020.04.25
[BOJ 2169] 로봇 조종하기  (0) 2020.04.25
[BOJ 5582] 공통 부분 문자열  (0) 2020.04.22