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
- 언리얼엔진5
- 팰린드롬 만들기
- 오블완
- UnrealEngine5
- 프로그래머스
- 1563
- baekjoon
- Unreal Engine5
- C++
- 티스토리챌린지
- RootMotion
- C
- 줄 세우기
- Frustum
- directx
- winapi
- UE5
- IFileDialog
- DirectX11
- DeferredRendering
- RVO
- 백준
- 2294
- UnrealEngine4
- softeer
- Programmers
- const
- algorithm
- NRVO
Archives
- Today
- Total
Game Develop
[Algorithm]Baekjoon 1029번 :: 그림교환 본문
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 != -1) return 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, -1, sizeof(dp));
cout << DFS(0, 1, 0);
}
|
cs |
외판원문제가 생각나는 문제이다.
다만, 이 문제에서는 각 경로를 이동하는데에 조건이 달려있다. 이전에 구입한가격 '이상'으로만 팔 수 있다는 것이다.
그렇기 때문에 dp를 3차원테이블로 해야한다.
이것 말고는 크게 유의할점은 없어보인다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 16234번 : 인구 이동 (0) | 2024.06.18 |
---|---|
[Algorithm] Baekjoon 2559번 : 수열 (1) | 2024.06.09 |
[Algorithm]Baekjoon 2166번 :: 다각형의 면적 (1) | 2024.06.09 |
[Algorithm]Baekjoon 2477번 :: 참외밭 (1) | 2024.06.09 |
[Algorithm]Baekjoon 1004번 :: 어린 왕자 (1) | 2024.06.09 |