백준 1149번 RGB거리

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
51
#include<iostream>
#include<vector>
#include<string>
#include<queue>
#include<cstring>
#include<algorithm>
#include<cmath>
using namespace std;
 
int arr[1001][1001];
int cache[1001][1001];
 
int n;
int Paint(int y,int x ) {
 
    if (y == n - 1return arr[y][x];
 
    int &ret = cache[y][x];
 
    if (ret != -1return ret;
 
    if (x == 0) {
        return ret = (min(Paint(y + 1, x + 1), Paint(y + 1, x + 2)) + arr[y][x]);
    }
    else if (x == 1) {
        return ret = (min(Paint(y + 1, x - 1), Paint(y + 1, x + 1)) + arr[y][x]);
    }
    else if (x == 2) {
        return ret = (min(Paint(y + 1, x - 2), Paint(y + 1, x - 1)) + arr[y][x]);
    }
}
 
 
int main(void) {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cin >> n;
    memset(cache, -1sizeof(cache));
 
    for (int i = 0; i < n; i++)
        for (int j = 0; j < 3; j++)
            cin >> arr[i][j];
    
    int Ret = 987654321;
    for (int i = 0; i < 3; i++) {
        Ret = min(Ret, Paint(0, i));
    }
    cout << Ret;
 
    return 0;
}
cs

출처:https://www.acmicpc.net/problem/1149



기본 동적계획법 문제입니다. 현재상태가 R G B인 경우 3가지를 케이스 분류해줘서 

풀어주면 쉽게 풀 수 있는 문제였습니다. 

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

백준 16719번 ZOAC  (0) 2019.03.25
백준 1158번 조세퍼스 문제  (0) 2019.03.24
백준 16463번 13일의 금요일  (0) 2019.03.22
백준 16468번 크리스마스 트리 꾸미기  (0) 2019.03.21
백준 2503번 숫자 야구  (0) 2019.02.10

+ Recent posts