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
- 백준
- 오블완
- UnrealEngine5
- winapi
- 줄 세우기
- const
- UE5
- C++
- Frustum
- DirectX11
- 프로그래머스
- directx
- UnrealEngine4
- C
- GeeksForGeeks
- 1563
- DeferredRendering
- baekjoon
- 팰린드롬 만들기
- IFileDialog
- softeer
- algorithm
- Unreal Engine5
- RVO
- Programmers
- 티스토리챌린지
- 2294
- NRVO
- RootMotion
- 언리얼엔진5
Archives
- Today
- Total
Game Develop
[Algorithm] Baekjoon 10971번 : 외판원 순회 2 본문
https://www.acmicpc.net/problem/10971
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
|
vector<vector<pair<int,int>>> graph;
bool visitedMap[12] = { false };
int result = 2100000000;
int targetCount = 0;
void visit(int city, int count, int sumCost)
{
if (count == targetCount)
{
if (city != 0) return;
result = min(result, sumCost);
return;
}
for (int i = 0; i < graph[city].size(); i++)
{
int nextCity = graph[city][i].first;
int nextCost = graph[city][i].second;
if (!visitedMap[nextCity])
{
visitedMap[nextCity] = true;
visit(nextCity, count + 1, sumCost + nextCost);
visitedMap[nextCity] = false;
}
}
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int n = 0;
int temp = 0;
cin >> n;
graph.resize(n);
targetCount = n;
for (int i = 0; i < n; i++)
{
for (int j = 0; j < n; j++)
{
cin >> temp;
if (temp == 0) continue;
graph[i].push_back({ j,temp });
}
}
visit(0, 0, 0);
cout << result;
}
|
cs |
0번째 도시부터 출발해서 n번만큼의 도시를 방문했을 때, 마지막 방문지점이 출발지점인 경우가 요구사항에 맞는 경우이다.
완전탐색을 하면서, 해당 경우일 때의 Cost를 최소값으로 갱신시켜주면 된다.
'Algorithm > Baekjoon' 카테고리의 다른 글
[Algorithm] Baekjoon 1003번 : 피보나치 함수 (0) | 2022.10.18 |
---|---|
[Algorithm] Baekjoon 1600번 : 말이 되고픈 원숭이 (0) | 2022.10.18 |
[Algorithm] Baekjoon 9663번 : N-Queen (0) | 2022.10.14 |
[Algorithm] Baekjoon 10597번 : 순열장난 (0) | 2022.10.13 |
[Algorithm] Baekjoon 2661번 : 좋은수열 (1) | 2022.10.13 |