Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- Set
- 코딩테스트
- 프로그래머스
- 모의SW역량테스트
- C++
- 시뮬레이션
- KAKAO
- 코딩스킬
- 문자열
- 삼성SW테스트
- 삼성SW역량테스트
- 백트래킹
- substr
- dfs
- 이런게4문제
- 레벨3
- STL
- Sort
- swea
- Map
- 브루트포스
- dp
- BFS
- 레벨2
- 백준
- 완전탐색
- find
- priority_queue
- 2018
- 삼성
Archives
- Today
- Total
-
[DP] 백준 1149번 - RGB 거리 본문
https://www.acmicpc.net/problem/1149
백준 DP 연습문제다.
입력받은 각 위치의 RGB값을 갖고 이전에 합산해둔 (메모이제이션) 최소 RGB 비용을 비교해 더 작은 비용값에 더해주며 최종 N의 자리까지 가면된다. N의 자리까지 가면 세 색깔에 대한 값을 모두 비교해주어 그 중 가장 작은 값을 답으로 출력하면 된다.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#include <iostream>
#include <algorithm>
#define maxlen 1001
using namespace std;
int DP[maxlen][3];
int N;
int main(){
cin >> N;
DP[0][0] = DP[0][1] = DP[0][2] = 0;
for (int i = 1; i <= N; i++){
for (int j = 0; j < 3; j++){
cin >> DP[i][j];
}
DP[i][0] += min(DP[i - 1][1], DP[i - 1][2]);
DP[i][1] += min(DP[i - 1][0], DP[i - 1][2]);
DP[i][2] += min(DP[i - 1][0], DP[i - 1][1]);
}
cout << min(DP[N][0], min(DP[N][1], DP[N][2]));
return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
'5. DP' 카테고리의 다른 글
[DP] 백준 4811번 - 알약 (0) | 2020.01.28 |
---|---|
[DP] 백준 5557번 - 1학년 (0) | 2020.01.27 |
[DP] 백준 2193번 - 이친수 (0) | 2020.01.08 |
[DP] 백준 9095번 - 1, 2, 3 더하기 (0) | 2020.01.08 |
[DP] 백준 1463번 - 1로 만들기 (0) | 2020.01.08 |
Comments