본문 바로가기
알고리즘/DP

백준 1149번 : RGB 거리

by Jason95 2021. 1. 29.

문제 링크 : www.acmicpc.net/problem/1149

내 풀이(2021.1.28.) :

#include <iostream>
#include <algorithm>

using namespace std;

int dp[1001][3];

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
	cout.tie(NULL);

	int N; cin >> N;
	int a, b, c; cin >> a >> b >> c;
	dp[1][0] = a;
	dp[1][1] = b;
	dp[1][2] = c;
	for (int i = 2; i <= N; i++) {
		int a, b, c; cin >> a >> b >> c;
		dp[i][0] = min(dp[i - 1][1], dp[i - 1][2]) + a;
		dp[i][1] = min(dp[i - 1][2], dp[i - 1][0]) + b;
		dp[i][2] = min(dp[i - 1][0], dp[i - 1][1]) + c;
	}

	int ans = min(dp[N][0], dp[N][1]);
	ans = min(dp[N][2], ans);
	cout << ans;

	return 0;
}	

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

백준 11053번 : 가장 긴 증가하는 부분 수열  (0) 2021.01.29
백준 1932번 : 정수 삼각형  (0) 2021.01.29
백준 17626번 : Four Squares  (0) 2021.01.22
백준 2579번 : 계단 오르기  (0) 2021.01.22
백준 2294번 : 동전 2  (0) 2021.01.19