Game Develop

[Algorithm]Baekjoon 1029번 :: 그림교환 본문

Algorithm/Baekjoon

[Algorithm]Baekjoon 1029번 :: 그림교환

MaxLevel 2024. 6. 9. 23:13

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

 

 

 

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 <memory.h>
#include <deque>
#include <set>
#include <unordered_map>
#include <stack>
#include <numeric>
 
using namespace std;
 
int costInfo[16][16= { 0 };
int n;
int dp[15][1 << 15][10= { 0 };
 
 
int DFS(int index, int visited, int cost)
{
    int& result = dp[index][visited][cost];
    
    if (result != -1return result;
 
    result = 1;
 
    for (int i = 1; i < n; ++i)
    {
        if (visited & (1 << i)) continue;
        if (costInfo[index][i] < cost) continue;
 
        result = max(result, DFS(i, visited | (1 << i), costInfo[index][i]) + 1);
    }
    
    return result;
}
 
 
int main()
{
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
 
    cin >> n;
 
    for (int i = 0; i < n; ++i)
    {
        string s;
        cin >> s;
 
        for (int j = 0; j < s.size(); ++j)
        {
            costInfo[i][j] = s[j] - '0';
        }
    }
 
    memset(dp, -1sizeof(dp));
    
    cout << DFS(010);
}
cs

 

 

외판원문제가 생각나는 문제이다.

다만, 이 문제에서는 각 경로를 이동하는데에 조건이 달려있다. 이전에 구입한가격 '이상'으로만 팔 수 있다는 것이다.

그렇기 때문에 dp를 3차원테이블로 해야한다.

이것 말고는 크게 유의할점은 없어보인다.