본문 바로가기

BOJ/C++

외판원 순회

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
#include <iostream>
#include <vector>
#define MAXX 17
#define INF 987654321
using namespace std;
 
int n;
int w[MAXX][MAXX], dp[MAXX][1<<MAXX];
int tsp(int cur, int status) {
    //현재 도착한 노드와 순회 상태 저장 
    if (status == (1 << n)-1) {
        //전부 순회한 상태이다. 
        return w[cur][0== 0 ? INF : w[cur][0]; //처음 시작한 지점과 현재 지점이 연결된 상태인가(처음 지점으로 되돌아가야 하기 때문에)
    }
 
    if (dp[cur][status] != INF) {
        //이미 방문한 지점
        return dp[cur][status];
    }
 
    for (int i = 0; i < n; i++) {
        if ((status & (1 << i)) == 0 && w[cur][i]) {
            //아직 방문 안했고, 갈 수 있는 곳이면 
            dp[cur][status] = min(dp[cur][status], w[cur][i] + tsp(i, (status | (1<<i))));
        }
    }
    return dp[cur][status];
 
}
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0);
 
    cin >> n;
 
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < n; j++) {
            cin >> w[i][j];
        }
    }
 
    for (int i = 0; i < n; i++) {
        for (int j = 0; j < (1<<n); j++) {
            dp[i][j] = i == j ? 0 : INF;
        }
    }
 
    cout << tsp(0,1<< '\n';
    return 0;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs

'BOJ > C++' 카테고리의 다른 글

Dance Dance Revolution  (0) 2020.02.14
발전소  (0) 2020.02.14
전구  (0) 2020.02.13
공통부분문자열  (0) 2020.02.13
[BOJ] 11049. 행렬 곱셈 순서  (0) 2020.02.13