Game Develop

[Algorithm] Baekjoon 10971번 : 외판원 순회 2 본문

Algorithm/Baekjoon

[Algorithm] Baekjoon 10971번 : 외판원 순회 2

MaxLevel 2022. 10. 14. 23:15

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

 

10971번: 외판원 순회 2

첫째 줄에 도시의 수 N이 주어진다. (2 ≤ N ≤ 10) 다음 N개의 줄에는 비용 행렬이 주어진다. 각 행렬의 성분은 1,000,000 이하의 양의 정수이며, 갈 수 없는 경우는 0이 주어진다. W[i][j]는 도시 i에서 j

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
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 != 0return;
        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 == 0continue;
            graph[i].push_back({ j,temp });
        }
    }
 
    visit(000);
    
    cout << result;
}
cs

0번째 도시부터 출발해서 n번만큼의 도시를 방문했을 때, 마지막 방문지점이 출발지점인 경우가 요구사항에 맞는 경우이다. 

완전탐색을 하면서, 해당 경우일 때의 Cost를 최소값으로 갱신시켜주면 된다.