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
- GeeksForGeeks
- C++
- directx
- const
- softeer
- 언리얼엔진5
- UE5
- C
- Programmers
- NRVO
- algorithm
- RootMotion
- UnrealEngine5
- 오블완
- 2294
- DirectX11
- Frustum
- 팰린드롬 만들기
- Unreal Engine5
- 티스토리챌린지
- 줄 세우기
- 1563
- 백준
- RVO
- UnrealEngine4
- IFileDialog
- DeferredRendering
- winapi
- baekjoon
- 프로그래머스
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 10835번 : 카드게임 본문
https://www.acmicpc.net/problem/10835
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
|
#include <iostream>
#include <string>
#include <map>
#include <vector>
#include <algorithm>
#include <math.h>
#include <queue>
#include <functional>
#include <sstream>
#include <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
using namespace std;
int n;
int leftCards[2005] = { 0 };
int rightCards[2005] = { 0 };
int dp[2005][2005] = { 0 };
int DFS(int leftCardIndex, int rightCardIndex)
{
if (leftCardIndex == n + 1 || rightCardIndex == n + 1) return 0;
if (dp[leftCardIndex][rightCardIndex] != -1) return dp[leftCardIndex][rightCardIndex];
int result = 0;
if (rightCards[rightCardIndex] < leftCards[leftCardIndex])
{
result = DFS(leftCardIndex, rightCardIndex + 1) + rightCards[rightCardIndex];
}
else
{
result = max(result, DFS(leftCardIndex + 1, rightCardIndex));
result = max(result, DFS(leftCardIndex + 1, rightCardIndex + 1));
}
return dp[leftCardIndex][rightCardIndex] = result;
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n;
for (int i = 1; i <= n; ++i)
{
cin >> leftCards[i];
}
for (int i = 1; i <= n; ++i)
{
cin >> rightCards[i];
}
memset(dp, -1, sizeof(dp));
cout << DFS(1, 1);
}
|
cs |
좌,우측 카드의 남은개수를 dp테이블로잡고 업데이트해나가면 된다.
항시 선택가능한 분기점으로는 좌측카드만 선택, 좌,우측 둘 다 선택이 있다.
대신 점수는 누적안된다.
조건부로 선택가능한 분기점으로는 우측카드가 좌측카드보다 값이 작을경우, 우측카드를 선택할 수 있고 값을 누적시킨다.
이런 문제에서 제일 주의할 점은, dp값이 '0'이 나올 수 있다는 것. 그러니 초기 dp값은 0으로 초기화되어있으면 안되고 더 낮은값으로 초기화되있어야 한다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm]Baekjoon 2666번 :: 벽장문의 이동 (1) | 2024.04.19 |
---|---|
[Algorithm]Baekjoon 2642번 : 동전 바꿔주기 (0) | 2024.04.16 |
[Algorithm]Baekjoon 1793번 : 타일링 (0) | 2024.04.11 |
[Algorithm]Baekjoon 2637번 : 장난감 조립 (0) | 2024.04.09 |
[Algorithm]Baekjoon 11062번 : 카드 게임 (0) | 2024.04.09 |