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
- 우선순위 큐
- VR
- 백트래킹
- DFS
- 브루트포스
- c++
- 유니온 파인드
- 트리
- 유니티
- 알고리즘
- 자료구조
- BFS
- 구현
- 재귀
- Unreal Engine 5
- 다이나믹 프로그래밍
- 문자열
- 투 포인터
- 누적 합
- 시뮬레이션
- 정렬
- 수학
- 그리디 알고리즘
- 다익스트라
- 스택
- 백준
- Team Fortress 2
- ue5
- 그래프
- XR Interaction Toolkit
Archives
- Today
- Total
1일1알
백준 17953번 디저트 C++ (골드5) 본문
https://www.acmicpc.net/problem/17953
캐시테이블을 cache[디저트 번호][날짜][전과 같은 디저트 여부] 로 만들어서 dp로 해결하였다.
#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, m;
vector<vector<int>> v;
vector<vector<vector<int>>> cache;
int dp(int dessert, int day, int isSameDessert)
{
int& val = cache[dessert][day][isSameDessert];
if (val != -1) return val;
val = 0;
int curr = v[dessert][day];
if (isSameDessert == 1) curr /= 2;
if (day == n)
{
return val = curr;
}
for (int i = 1; i <= m; i++)
{
if (i == dessert)
{
val = max(val, dp(i, day + 1, 1) + curr);
}
else {
val = max(val, dp(i, day + 1, 0) + curr);
}
}
return val;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
cin >> n >> m;
v = vector<vector<int>>(m + 1, vector<int>(n + 1, 0));
cache = vector<vector<vector<int>>>(m + 1, vector<vector<int>>(n + 1, vector<int>(2, -1)));
for (int i = 1; i <= m; i++)
{
for (int j = 1; j <= n; j++)
{
cin >> v[i][j];
}
}
int ans = dp(0, 0, 0);
cout << ans;
}
'알고리즘' 카테고리의 다른 글
백준 25194번 결전의 금요일 C++ (골드5) (0) | 2024.06.05 |
---|---|
백준 25556번 포스택 C++ (골드5) (0) | 2024.06.03 |
백준 15488번 나이트가 체스판을 벗어나지 않을 확률 C++ (골드5) (0) | 2024.06.01 |
백준 1930번 정사면체 C++ (골드4) (0) | 2024.05.31 |
백준 17349번 1루수가 누구야 C++ (골드4) (0) | 2024.05.30 |