Game Develop

[Algorithm]Baekjoon 10835번 : 카드게임 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 10835번 : 카드게임

MaxLevel 2024. 4. 16. 19:36

https://www.acmicpc.net/problem/10835

 

10835번: 카드게임

첫 줄에는 한 더미의 카드의 개수를 나타내는 자연수 N(1 ≤ N ≤ 2,000)이 주어진다. 다음 줄에는 왼쪽 더미의 카드에 적힌 정수 A(1 ≤ A ≤ 2,000)가 카드 순서대로 N개 주어진다. 그 다음 줄에는 오

www.acmicpc.net

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 + 1return 0;
    if (dp[leftCardIndex][rightCardIndex] != -1return 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, -1sizeof(dp));
 
    cout << DFS(11);
}
cs

 

 

좌,우측 카드의 남은개수를 dp테이블로잡고 업데이트해나가면 된다.

 

항시 선택가능한 분기점으로는 좌측카드만 선택, 좌,우측 둘 다 선택이 있다.

대신 점수는 누적안된다.

 

조건부로 선택가능한 분기점으로는 우측카드가 좌측카드보다 값이 작을경우, 우측카드를 선택할 수 있고 값을 누적시킨다.

 

이런 문제에서 제일 주의할 점은, dp값이 '0'이 나올 수 있다는 것. 그러니 초기 dp값은 0으로 초기화되어있으면 안되고 더 낮은값으로 초기화되있어야 한다.