-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtspDP.cpp
178 lines (136 loc) · 4.07 KB
/
tspDP.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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
#include <iostream>
#include <iostream>
#include <vector>
#include <fstream>
#include <algorithm>
#include <string>
#include <cmath>
#include <string.h>
#include <stdio.h>
#include <ctime>
#include <chrono>
using namespace std;
using namespace std::chrono;
//estructura que contiene la estructura de un Ciudad
struct Ciudad{
float x,y;
int indice;
};
//Calculo de distancia entre Ciudads
double distancia(Ciudad p1,Ciudad p2){
return sqrt((p2.x-p1.x)*(p2.x-p1.x)+(p2.y-p1.y)*(p2.y-p1.y));
}
void tsp(vector<Ciudad> N, vector<Ciudad> &S, double &distanciaRecorrida,double *L[]){
vector<Ciudad> vaux, vmin;
vector<Ciudad> naux;
double aux, min=numeric_limits<double>::max();
//CASO BASE queda una ciudad sin recorrer
if (N.empty()){
distanciaRecorrida+=L[S.front().indice -1][S.back().indice -1];
S.push_back(S.front());
}
else{
for(auto it=N.begin() ; it!=N.end() ; ++it){
aux=L[(it->indice)-1][(S.back().indice)-1];
//distancia(*it,S.back());
vaux = S;
naux = N;
vaux.push_back(*it);
N.erase(it);
tsp(N,vaux,aux,L);
if(aux < min){
min = aux;
vmin = vaux;
}
N=naux;
}
distanciaRecorrida += min;
S = vmin;
}
}
int main(int argc,char **argv){
if(argc<2){
cout<<"Falta el fichero de texto.)";
exit(-1);
}
string fichero=argv[1];
//Definimos un vector de la stl
vector<Ciudad> ciudades;
//Procedemos a la lectura del fichero
ifstream ficheroEntrada;
string nombreFichero,comentario,tipo,dimension,weight_type,node;
//Abrimos el fichero
ficheroEntrada.open(fichero);
if(!ficheroEntrada.is_open()){
exit(-1);
}
//Leemos el nombre del fichero
getline(ficheroEntrada,nombreFichero);
getline(ficheroEntrada,comentario);
getline(ficheroEntrada,tipo);
getline(ficheroEntrada,dimension);
getline(ficheroEntrada,weight_type);
getline(ficheroEntrada,node);
while(!ficheroEntrada.eof()){
char num_ciudad[16];
char xChar[16];
char yChar[16];
ficheroEntrada >> num_ciudad;
ficheroEntrada >> xChar;
ficheroEntrada >> yChar;
Ciudad p;
p.indice=atoi(num_ciudad);
p.x=atof(xChar);
p.y=atof(yChar);
ciudades.push_back(p);
}
//Eliminamos el ultimo porque se introduce un Ciudad con el valor EOF por el fichero
ciudades.pop_back();
//Cerramos el fichero
ficheroEntrada.close();
/*
Definimos una matriz L donde L[i][j] son las distancias
entre la ciudad i y la ciudad j.
L[i][i] valdra 0
*/
int tam=ciudades.size();
double** L = new double*[tam];
for(int i = 0; i < tam; ++i)
L[i] = new double[tam];
for(int i=0;i<tam;i++){
for(int j=0;j<tam;j++){
L[i][j]= 0;
}
}
//Calculamos las distancias y las ponemos en la matriz
double distanciaActual;
for(int i=0;i<tam;i++){
for(int j=0;j<tam;j++){
if(i!=j){
distanciaActual=distancia(ciudades[i],ciudades[j]);
L[i][j]=distanciaActual;
}
}
}
vector<Ciudad> S;
double distanciaRecorrida=0;
S.push_back(ciudades[0]);
ciudades.erase(ciudades.begin());
int contador=0;
high_resolution_clock::time_point tantes, tdespues;
duration<double> transcurrido;
tantes=high_resolution_clock::now();
tsp(ciudades,S,distanciaRecorrida,L);
tdespues=high_resolution_clock::now();
transcurrido = duration_cast<duration<double>>(tdespues - tantes);
cout << ciudades.size() +1 <<"\t"<<transcurrido.count()<<endl;
cout <<endl <<"Solucion: "<<distanciaRecorrida <<endl;
for(int i=0;i<S.size();i++){
cout << S[i].x<<" "<<S[i].y<<" "<<endl;
}
//Borramos de memoria dinamica la matriz
for(int i=0;i<tam;i++){
delete [] L[i];
}
delete [] L;
}