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 |
Tags
- c++
- 스택
- BFS
- 문자열
- DFS
- 백준
- 트리
- 유니티
- 누적 합
- 다익스트라
- 시뮬레이션
- Unreal Engine 5
- 투 포인터
- 브루트포스
- 다이나믹 프로그래밍
- XR Interaction Toolkit
- 그래프
- ue5
- 구현
- 우선순위 큐
- 알고리즘
- 백트래킹
- VR
- 그리디 알고리즘
- 자료구조
- 유니온 파인드
- 정렬
- 재귀
- Team Fortress 2
- 수학
Archives
- Today
- Total
1일1알
백준 17404번 RGB거리 2 C++ 본문
https://www.acmicpc.net/problem/17404
첫번째 집을 빨강, 초록, 파랑 색으로 각각 지을 때 최솟값을 찾고 셋중에서 최솟값을 찾았다.
#include <iostream>
#include <string>
#include <vector>
#include <math.h>
#include <algorithm>
#include <utility>
#include <stack>
#include <queue>
#include <math.h>
#include <set>
#include <map>
#include <list>
#include <unordered_map>
#include <unordered_set>
#include <iomanip>
#include <limits.h>
using namespace std;
using int64 = long long;
int n;
const int CNT = 3;
vector<vector<int>> cost;
vector<vector<int>> cache;
int dfs(int loc, int color, int firstColor) {
int& val = cache[loc][color];
if (loc == n - 1) {
if (color == firstColor) return val = INT_MAX;
return val = cost[loc][color];
}
if (val != -1) return val;
val = 0;
return val = cost[loc][color] + min(dfs(loc + 1, (color + 1) % CNT, firstColor), dfs(loc + 1, (color + 2) % CNT, firstColor));
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n;
cost = vector<vector<int>>(n, vector<int>(CNT));
cache = vector<vector<int>>(n, vector<int>(CNT, -1));
for (int i = 0; i < n; i++) {
for (int j = 0; j < CNT; j++) {
cin >> cost[i][j];
}
}
int ans1 = dfs(0, 0, 0);
cache = vector<vector<int>>(n, vector<int>(CNT, -1));
int ans2 = dfs(0, 1, 1);
cache = vector<vector<int>>(n, vector<int>(CNT, -1));
int ans3 = dfs(0, 2, 2);
int ans = min(ans1, min(ans2, ans3));
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 2212번 센서 C++ (1) | 2022.10.03 |
---|---|
백준 2473번 세 용액 C++ (0) | 2022.10.02 |
백준 2623번 음악프로그램 C++ (0) | 2022.09.27 |
백준 1005번 ACM Craft C++ (1) | 2022.09.26 |
백준 2252번 줄 세우기 C++ (1) | 2022.09.23 |