-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTraveling_Salesman.cpp
128 lines (110 loc) · 2.46 KB
/
Traveling_Salesman.cpp
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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
// Traveling Salesman Problem 1
// https://algospot.com/judge/problem/read/TSP1
#include <stdio.h>
#include <algorithm>
double findShortestPath(int nCities, double ** weight);
double verifyPath(int nCities, double minLength, int * city, double ** weight);
double getMaxLength();
int main()
{
int nTestCases;
int nCities;
double ** weight = NULL;
scanf("%d", &nTestCases);
while (nTestCases--)
{
scanf("%d", &nCities);
// Initialize weight array
weight = new double *[nCities];
for (int i = 0; i < nCities; i++)
{
weight[i] = new double[nCities];
}
// Set distance values
for (int i = 0; i < nCities; i++)
{
for (int j = 0; j < nCities; j++)
{
scanf("%lf", &weight[i][j]);
}
}
// Get distance of shortest path
printf("%.10lf\n", findShortestPath(nCities, weight));
}
return 0;
}
double findShortestPath(int nCities, double ** weight)
{
// Initialize city number array
int * city = new int[nCities];
for (int i = 0; i < nCities; i++)
{
city[i] = i;
}
// Initialize minimum length value
double minLength = getMaxLength();
// Get Sequence of traveling cities and verify length of paths
// This algorithm is NP-Complete
minLength = verifyPath(nCities, minLength, city, weight);
while (std::next_permutation(city, city + nCities))
{
minLength = verifyPath(nCities, minLength, city, weight);
}
// Test code
//printf("Shortest Path : \n");
//for (int i = 0; i < nCities; i++)
//{
// printf("%d ", city[i]);
//}
//printf("\n");
return minLength;
}
double verifyPath(int nCities, double minLength, int * city, double ** weight)
{
double pathLength = 0.0;
for (int i = 0; i < nCities - 1; i++)
{
pathLength += weight[city[i]][city[i + 1]];
}
if (minLength > pathLength)
{
minLength = pathLength;
}
return minLength;
}
double getMaxLength()
{
return 1415 * 7;
}
//double travel(int nCities, double ** distances)
//{
// double sum = 0.0;
// double shortest = 0.0;
//
// int i = 0;
//
// // Find shortest value in current row and add to Sum
// while (i < nCities)
// {
// int j = 0;
// shortest = 0;
//
// //printf("%.10lf or %.10lf", distances[i][j], distances[i][j]);
// shortest = distances[i][j++];
// //printf(" -> %.10lf\n", shortest);
//
// while (j < i)
// {
// printf("%.10lf or %.10lf", shortest, distances[i][j]);
// shortest = fmin(shortest, distances[i][j++]);
// printf(" -> %.10lf\n", shortest);
// }
//
// sum += shortest;
// //printf("sum : %.10lf\n", sum);
//
// i++;
// }
//
// return sum;
//}