Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- lob
- hackerrank
- c++
- BOJ
- 생활코딩
- 기계학습
- PHP 웹페이지 만들기
- C언어
- 드림핵
- BOJ Python
- c
- 자료구조 복습
- 백준
- 풀이
- Javascript
- siss
- The Loard of BOF
- SWEA
- Python
- 머신러닝
- hackctf
- XSS Game
- WarGame
- Sookmyung Information Security Study
- 숙명여자대학교 정보보안동아리
- 숙명여자대학교 정보보안 동아리
- HTML
- CSS
- 웹페이지 만들기
- 파이썬
Archives
- Today
- Total
혜랑's STORY
[BOJ_C++] 1149번 : RGB 거리 본문
code
#define _CRT_SECURE_NO_WARNINGS
#include <iostream>
#include <algorithm>
#include <cstring>
#include <stack>
#include <vector>
#include <cmath>
#include <string>
using namespace std;
int h[1001][3];
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
h[0][0] = h[0][1] = h[0][2] = 0;
int n; cin >> n;
int temp1, temp2, temp3;
for (int i = 1; i <= n; i++) {
cin >> temp1 >> temp2 >> temp3;
h[i][0] = min(h[i - 1][1], h[i - 1][2]) + temp1;
h[i][1] = min(h[i - 1][0], h[i - 1][2]) + temp2;
h[i][2] = min(h[i - 1][1], h[i - 1][0]) + temp3;
}
printf("%d", min(h[n][0], min(h[n][1], h[n][2])));
return 0;
}
- 어떤 집이 빨간색이라면 뒤엔 초록색 또는 파란색이 된다.
- 즉, 각 색에 대한 최소값을 구하고 이 중 최소값을 출력하면 된다.
결과
'무지성 공부방 > 알고리즘 해결' 카테고리의 다른 글
[BOJ_C++] 17404번 : RGB거리 2 (0) | 2021.08.11 |
---|---|
[BOJ_C++] 11660번 : 구간 합 구하기 5 (0) | 2021.08.11 |
[BOJ_C++] 11068번 : 회문인 수 (0) | 2021.08.09 |
[BOJ_C++] 1343번 : 폴리오미노 (0) | 2021.08.08 |
[BOJ_C++] 11170번 : 0의 개수 (0) | 2021.08.08 |