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 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270
| #include <iostream> #include <vector> #include <cmath> #include <algorithm> #include <ctime> #include <chrono>
using namespace std;
const int ITERATION_TIMES = 200; const int ANT_NUMBER = 100; const int CITY_NUMBER = 50; const double ALPHA = 2.0; const double BETA = 1.0; const double ROW = 0.4;
const double information_init = 1.14;
typedef vector<vector<double>> Matrix;
struct Ant { vector<int> route; double TotalRouteLength; };
class TSP{ public: TSP(Matrix DistancesMatrix) : DistancesMatrix(DistancesMatrix){ city_number = DistancesMatrix.size(); InformationMatrix = Matrix(city_number,vector<double>(city_number,information_init)); } void solve(); double GetBestRouteLength(); vector<int> GetBestRoute();
private: double BestRouteLength = numeric_limits<double>::max(); vector<int> BestRoute; int city_number; Matrix DistancesMatrix; Matrix InformationMatrix;
int Select_NextCity(Ant& this_ant); double Calculate_TotalLength(Ant& this_ant); void Update_Information(vector<Ant>& ants); };
void TSP::solve() { for(int iter=0; iter<ITERATION_TIMES; iter++){ cout << "------第" << iter+1 << "次算法迭代" << "------" << endl; vector<Ant> ants(ANT_NUMBER); for(int i = 0; i < ANT_NUMBER; i++){ ants[i].route.push_back(rand() % city_number); cout << "|||第" << i+1 << "只蚂蚁:初始位置为" << ants[i].route.back() << "|||" << endl;
for(int j = 0; j < city_number - 1; j++){ int nextCity = Select_NextCity(ants[i]); ants[i].route.push_back(nextCity); cout << "!!!第" << j+1 << "步:移动到" << nextCity << endl; } ants[i].TotalRouteLength = Calculate_TotalLength(ants[i]); cout << "-->路径长:" << ants[i].TotalRouteLength << endl; if(ants[i].TotalRouteLength < BestRouteLength) { BestRouteLength = ants[i].TotalRouteLength; BestRoute = ants[i].route; } cout << "目前为止最佳的路径长:" << BestRouteLength << endl; } Update_Information(ants); } }
int TSP::Select_NextCity(Ant& this_ant) { vector<double> Probabilities(city_number,0.0);
int NowCity = this_ant.route.back(); double totalProbabilities = 0.0; for(int NextCity = 0; NextCity < city_number; NextCity++){ auto visited = find(this_ant.route.begin(), this_ant.route.end(), NextCity); if(visited != this_ant.route.end()) continue;
double information_goto_nextcity = InformationMatrix[NowCity][NextCity]; double distance_goto_nextcity = DistancesMatrix[NowCity][NextCity]; Probabilities[NextCity] = pow(information_goto_nextcity, ALPHA) * pow(1.0/distance_goto_nextcity, BETA); totalProbabilities += Probabilities[NextCity]; }
for(int NextCity = 0; NextCity < city_number; NextCity++){ auto visited = find(this_ant.route.begin(), this_ant.route.end(), NextCity); if(visited != this_ant.route.end()) continue; Probabilities[NextCity] = Probabilities[NextCity] / totalProbabilities; }
double randVal = (double)rand() / RAND_MAX * totalProbabilities; for(int NextCity = 0; NextCity < city_number; NextCity++){ auto visited = find(this_ant.route.begin(), this_ant.route.end(), NextCity); if(visited != this_ant.route.end()) continue;
randVal -= Probabilities[NextCity] * totalProbabilities; if (randVal <= 0){ return NextCity; } }
return -1; }
double TSP::Calculate_TotalLength(Ant& this_ant) { double totalLength = 0.0; for(int i = 0; i < this_ant.route.size()-1; i++){ totalLength += DistancesMatrix[this_ant.route[i]][this_ant.route[i+1]]; } totalLength += DistancesMatrix[this_ant.route.back()][this_ant.route[0]]; return totalLength; }
void TSP::Update_Information(vector<Ant>& ants) { for(int i = 0; i < InformationMatrix[0].size(); i++){ for(int j = 0; j < InformationMatrix[0].size(); j++){ InformationMatrix[i][j] = InformationMatrix[i][j] * (1 - ROW); } }
for(int i = 0; i < ants.size(); i++){ for(int j = 0; j < ants[i].route.size() - 1; j++){ int StartPoint = ants[i].route[j]; int Destination = ants[i].route[j+1]; InformationMatrix[StartPoint][Destination] += 1.0 / ants[i].TotalRouteLength; } InformationMatrix[ants[i].route.back()][ants[i].route[0]] += 1.0 / ants[i].TotalRouteLength; } }
vector<int> TSP::GetBestRoute() { return BestRoute; } double TSP::GetBestRouteLength() { return BestRouteLength; }
int main(){
srand(static_cast<unsigned>(time(0)));
Matrix distances = { {0, 2, 9, 10, 7, 4, 8, 12, 5, 6, 3, 15, 14, 11, 13, 9, 8, 7, 5, 6, 4, 3, 2, 1, 8, 9, 7, 5, 6, 12, 10, 14, 16, 8, 11, 9, 15, 10, 14, 6, 7, 5, 3, 8, 9, 10, 12, 11, 13, 9}, {2, 0, 6, 4, 3, 7, 5, 8, 9, 10, 11, 12, 13, 14, 15, 7, 8, 5, 6, 4, 3, 10, 12, 11, 9, 8, 6, 5, 7, 11, 12, 13, 14, 9, 8, 10, 11, 7, 5, 6, 4, 3, 9, 10, 8, 7, 6, 5, 4, 2}, {9, 6, 0, 8, 5, 12, 14, 11, 10, 9, 15, 6, 8, 7, 9, 8, 10, 12, 14, 15, 6, 7, 9, 11, 12, 13, 14, 16, 15, 12, 10, 9, 7, 8, 6, 5, 4, 3, 2, 1, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16}, {10, 4, 8, 0, 7, 9, 10, 12, 14, 11, 8, 7, 6, 5, 4, 8, 9, 10, 12, 11, 14, 13, 12, 15, 14, 11, 10, 8, 9, 10, 11, 12, 13, 14, 15, 16, 11, 10, 9, 12, 8, 7, 6, 5, 4, 3, 2, 1, 8, 7}, {7, 3, 5, 7, 0, 8, 9, 10, 12, 14, 11, 10, 9, 8, 6, 5, 4, 3, 2, 1, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 11, 10, 9, 8, 7, 6, 5, 4, 3}, {4, 7, 12, 9, 8, 0, 6, 10, 11, 13, 14, 15, 16, 12, 10, 9, 8, 7, 5, 4, 6, 5, 7, 9, 8, 10, 11, 12, 14, 15, 11, 10, 12, 13, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}, {8, 5, 14, 10, 9, 6, 0, 12, 11, 13, 14, 15, 16, 12, 11, 10, 9, 8, 7, 6, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4}, {12, 8, 11, 12, 10, 10, 12, 0, 14, 11, 9, 8, 7, 6, 5, 4, 3, 2, 1, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 10, 9, 8, 6, 7, 8, 10, 11, 12, 14, 15, 16, 14, 12, 11, 10, 9, 8, 7, 6, 5}, {5, 9, 10, 14, 12, 11, 11, 14, 0, 6, 5, 8, 9, 10, 11, 12, 14, 15, 16, 14, 12, 10, 8, 7, 6, 5, 4, 3, 2, 1, 10, 12, 13, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 8, 9, 10, 11, 12, 9}, {6, 10, 9, 11, 14, 13, 12, 11, 6, 0, 5, 7, 8, 9, 10, 11, 12, 14, 15, 16, 14, 12, 10, 8, 7, 6, 5, 4, 3, 2, 1, 9, 10, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 9, 8, 7, 6}, {3, 11, 15, 8, 11, 14, 14, 9, 5, 5, 0, 7, 8, 9, 10, 11, 12, 14, 15, 16, 14, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 11, 12, 9, 8, 7, 6, 5, 4, 3, 2, 1, 8, 7, 6, 5, 4}, {15, 12, 6, 7, 10, 15, 15, 8, 9, 7, 7, 0, 3, 4, 5, 6, 8, 10, 12, 14, 15, 11, 12, 10, 8, 7, 6, 5, 4, 3, 2, 1, 8, 9, 10, 11, 12, 13, 14, 15, 16, 14, 12, 11, 10, 9, 8, 7, 6, 5}, {14, 13, 8, 5, 9, 16, 12, 11, 8, 11, 9, 3, 0, 6, 7, 8, 9, 10, 12, 11, 14, 15, 14, 12, 10, 8, 6, 4, 3, 2, 1, 9, 10, 11, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 11, 12, 11, 10}, {11, 14, 7, 8, 6, 12, 11, 9, 10, 9, 8, 4, 6, 0, 2, 5, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 14, 12, 11, 9, 8, 7, 6, 5, 4, 3, 2, 1, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1}, {13, 15, 9, 4, 6, 15, 14, 6, 8, 8, 7, 5, 7, 2, 0, 5, 6, 7, 8, 9, 10, 11, 12, 10, 9, 8, 6, 4, 3, 2, 1, 11, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 9, 8, 7, 6, 5}, {9, 7, 8, 8, 5, 11, 14, 9, 12, 11, 5, 6, 9, 5, 5, 0, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 8, 9, 10, 11, 12, 13, 14, 15, 16}, {8, 8, 10, 9, 4, 8, 12, 8, 9, 10, 8, 7, 10, 7, 6, 3, 0, 2, 4, 5, 6, 8, 9, 10, 11, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 9, 8, 7, 6, 5, 4, 3, 2}, {7, 5, 12, 10, 1, 9, 10, 7, 10, 9, 8, 6, 8, 5, 6, 4, 2, 0, 4, 6, 8, 10, 11, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 11, 12, 13, 14, 15, 16, 14, 12, 10, 9}, {5, 6, 14, 15, 4, 10, 9, 6, 8, 10, 6, 5, 11, 9, 8, 5, 4, 4, 0, 2, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 8, 9, 10, 11, 12, 13}, {6, 4, 15, 12, 6, 11, 12, 10, 11, 9, 5, 8, 12, 8, 9, 6, 6, 6, 2, 0, 2, 4, 6, 7, 8, 9, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 11, 12, 13, 14, 15, 16}, {4, 3, 6, 4, 10, 5, 10, 8, 7, 10, 7, 5, 8, 9, 10, 9, 8, 6, 3, 2, 0, 3, 4, 6, 7, 8, 9, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 9, 10, 11, 12, 13, 14}, {3, 10, 7, 10, 9, 5, 9, 6, 8, 7, 3, 6, 10, 5, 5, 4, 3, 4, 4, 3, 3, 0, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 11, 12, 13, 14}, {2, 12, 9, 12, 8, 7, 8, 9, 10, 6, 7, 9, 12, 11, 10, 5, 6, 6, 4, 3, 2, 4, 0, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 11, 12, 13, 14}, {1, 11, 11, 15, 7, 6, 7, 10, 7, 11, 6, 5, 10, 8, 9, 6, 5, 10, 3, 2, 1, 5, 5, 0, 3, 4, 5, 6, 7, 8, 9, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 11}, {8, 9, 12, 14, 6, 10, 11, 12, 6, 7, 8, 7, 9, 12, 10, 9, 8, 8, 6, 4, 3, 6, 7, 3, 0, 8, 9, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10, 11, 12, 13, 14, 15}, {9, 8, 12, 11, 5, 10, 10, 11, 8, 9, 9, 10, 11, 9, 8, 6, 5, 10, 2, 1, 10, 7, 8, 4, 8, 0, 3, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 10}, {7, 6, 14, 15, 8, 9, 12, 11, 7, 10, 11, 9, 10, 8, 9, 8, 6, 9, 1, 1, 11, 10, 7, 7, 9, 3, 0, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2}, {6, 5, 11, 12, 7, 6, 9, 8, 10, 8, 10, 10, 10, 7, 6, 6, 5, 10, 4, 3, 1, 5, 4, 5, 10, 2, 3, 0, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1}, {5, 6, 12, 10, 4, 5, 9, 10, 11, 10, 10, 9, 10, 8, 8, 8, 7, 8, 3, 4, 2, 7, 7, 8, 10, 3, 4, 4, 0, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4}, {4, 3, 10, 12, 7, 9, 11, 12, 9, 6, 7, 8, 8, 10, 9, 5, 4, 5, 2, 1, 10, 8, 6, 7, 8, 2, 3, 5, 2, 0, 3, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4}, {3, 2, 9, 14, 8, 11, 12, 10, 10, 9, 6, 8, 9, 7, 8, 5, 3, 6, 1, 1, 9, 7, 8, 5, 4, 2, 3, 6, 3, 3, 0, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4}, {2, 1, 10, 16, 7, 8, 14, 12, 8, 10, 9, 6, 10, 8, 7, 4, 2, 5, 2, 1, 9, 6, 7, 6, 5, 3, 4, 5, 4, 5, 4, 0, 3, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6}, {1, 10, 11, 15, 8, 8, 11, 13, 9, 7, 5, 4, 5, 7, 5, 3, 2, 4, 1, 1, 10, 5, 8, 7, 9, 4, 5, 6, 5, 4, 3, 4, 0, 2, 4, 6, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5}, {2, 1, 10, 15, 6, 8, 10, 8, 10, 10, 8, 5, 8, 5, 9, 4, 3, 3, 2, 2, 8, 5, 4, 5, 4, 2, 3, 4, 5, 6, 7, 8, 10, 12, 14, 15, 16, 14, 12, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0} };
TSP tsp(distances);
auto start = chrono::high_resolution_clock::now(); tsp.solve(); cout << "Running the algorithm...\n" << flush; auto end = chrono::high_resolution_clock::now(); chrono::duration<double> duration = end - start;
vector<int> BestRoute = tsp.GetBestRoute(); double BestRouteLength = tsp.GetBestRouteLength(); cout << "Algorithm completed!" << endl; cout << "\n\n==============最终结果==============\n"; cout << "最佳路径:"; for(int i = 0 ; i < BestRoute.size() - 1; i++) { cout << BestRoute[i] << " -> "; } cout << BestRoute.back(); cout << "\n最佳(最短)路径长:"; cout << BestRouteLength << endl; cout << "============================||END." << endl; cout << "(本次运行超参数:" << "--ITERATION_TIMES=" << ITERATION_TIMES << "--ANT_NUMBER" << ANT_NUMBER << "--ALPHA=" << ALPHA << "--BETA=" << BETA << "--ROW=" << ROW << ")" << endl; cout << "(程序运行时长:" << duration << " seconds)" << endl;
return 0; }
|