Recent Posts
Recent Comments
Archives
- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 비주얼 스튜디오 코드
- 우분투
- 공연
- Algorithm
- C++
- 아파치
- dfs
- 다이나믹 프로그래밍
- 춤
- 넓이 우선 탐색
- dynamic programming
- simulation
- filezila server
- apache
- 시뮬레이션
- dp
- 그래프
- 백준
- baek joon
- Visual Studio Code
- sw expert academy
- BFS
- 알고리즘
- BOJ
- 삼성 알고리즘
- cube sound
- 동적계획법
- Graph
- 배틀
- ubuntu
Link
댄코 - 댄싱코딩
[1149] RGB거리 본문
dp를 공부하면서 처음 풀어봤던 문제다.
dp에대한 개념이 아직 부족해서 어려웠다.
using namespace std;
int table[1000][3] = {};
int main()
{
int N = 0;
int r = 0;
int g = 0;
int b = 0;
scanf("%d", &N);
for (int i = 0; i < N; i++)
{
scanf("%d %d %d", &r, &g, &b);
if (i == 0)
{
table[0][0] = r;
table[0][1] = g;
table[0][2] = b;
}
else
{
table[i][0] = min(table[i-1][1],table[i-1][2]) + r;
table[i][1] = min(table[i-1][0],table[i-1][2]) + g;
table[i][2] = min(table[i-1][0],table[i-1][1]) + b;
}
}
printf("%d\n",min(min(table[N-1][0],table[N-1][1]),table[N-1][2]));
}
처음입력값은 각각 table[0][0],table[0][1],table[0][1]
'코딩 > 알고리즘' 카테고리의 다른 글
[9251] LCS (0) | 2017.07.01 |
---|---|
[2965] 캥거루 세마리 (0) | 2017.06.30 |
[1463] 1로 만들기 (0) | 2017.06.30 |
[2579] 계단오르기 (0) | 2017.06.30 |
[1932] 숫자삼각형 (0) | 2017.06.30 |
Comments