-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
225 lines (185 loc) · 6.47 KB
/
Copy pathmain.c
File metadata and controls
225 lines (185 loc) · 6.47 KB
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
/*
* Task 3 - Vehicle Routing Problem / Heuristic Assignment
*
* Modüler proje yapısı:
* - input.c / input.h: input okuma
* - distance.c / distance.h: mesafe matrisi ve mesafe hesaplama
* - validation.c / validation.h: rota doğruluğu kontrolleri
* - heuristic.c / heuristic.h: heuristic ve local search algoritmaları
* - exact.c / exact.h: küçük inputlar için exact backtracking
*
*/
#include <stdio.h>
#include <string.h>
#include "common.h"
#include "input.h"
#include "distance.h"
#include "validation.h"
#include "heuristic.h"
#include "exact.h"
/*
* Fonksiyon amacı:
* Bilinen referans değere göre yüzde gap hesaplar.
*
* This helper calculates percentage gap using the known reference value.
*/
static double calculateGapPercent(double distance, double knownReference) {
if (knownReference <= 0.0) {
return 0.0;
}
return ((distance - knownReference) / knownReference) * 100.0;
}
/*
* Fonksiyon amacı:
* Algoritma sonuçlarını tablo halinde karşılaştırır.
*
*/
static void printComparisonTable(const Problem *problem, const Solution solutions[], int solutionCount, const ExactResult *exactResult) {
double knownReference = getKnownReferenceLength(problem);
printf("\n================ COMPARISON TABLE ================\n");
printf("%-30s %-8s %-15s %-15s %-12s", "Algorithm", "Valid", "Distance", "Time(s)", "Dist.OK");
if (knownReference > 0.0) {
printf(" %-12s", "Gap(%)");
}
printf("\n");
for (int i = 0; i < solutionCount; i++) {
printf("%-30s %-8s %-15.6f %-15.6f %-12s",
solutions[i].algorithmName,
solutions[i].valid ? "YES" : "NO",
solutions[i].totalDistance,
solutions[i].executionTimeSeconds,
solutions[i].distanceCheck ? "OK" : "MISMATCH"
);
if (knownReference > 0.0) {
printf(" %-12.2f", calculateGapPercent(solutions[i].totalDistance, knownReference));
}
printf("\n");
}
if (exactResult->available) {
printf("%-30s %-8s %-15.6f %-15.6f %-12s",
"Exact Backtracking",
"YES",
exactResult->bestDistance,
exactResult->executionTimeSeconds,
"OK"
);
if (knownReference > 0.0) {
printf(" %-12.2f", calculateGapPercent(exactResult->bestDistance, knownReference));
}
printf("\n");
} else {
printf("%-30s %-8s %-15s %-15.6f %-12s",
"Exact Backtracking",
"SKIPPED",
"-",
exactResult->executionTimeSeconds,
"-"
);
if (knownReference > 0.0) {
printf(" %-12s", "-");
}
printf("\n");
}
if (knownReference > 0.0) {
printf("Known reference length: %.2f\n", knownReference);
printf("Note: known reference values are used only for reporting gap, not for constructing routes.\n");
} else {
printf("Known reference length: not available for this input.\n");
}
printf("==================================================\n");
}
/*
* Fonksiyon amacı:
* Geçerli çözümler arasında en kısa mesafeli olanı seçer.
*
*/
static int findBestHeuristicIndex(const Solution solutions[], int solutionCount) {
int bestIndex = -1;
double bestDistance = INF;
for (int i = 0; i < solutionCount; i++) {
if (solutions[i].valid && solutions[i].totalDistance < bestDistance) {
bestDistance = solutions[i].totalDistance;
bestIndex = i;
}
}
return bestIndex;
}
/*
* Fonksiyon amacı:
* Checker için sade output üretir.
* İlk satır toplam mesafe, sonraki satırlar route'lardır.
* Bu modda tablo/debug yazdırılmaz.
*
*/
static void printPlainOutput(const Problem *problem, const Solution solutions[], int solutionCount, const ExactResult *exactResult) {
int bestIndex = findBestHeuristicIndex(solutions, solutionCount);
/*
* Küçük inputta exact sonuç varsa en güvenilir sonuç olarak onu yazdırıyoruz.
* Büyük inputlarda exact skipped olur ve en iyi valid heuristic yazdırılır.
*/
if (exactResult->available) {
printf("%.6f\n", exactResult->bestDistance);
for (int i = 0; i < exactResult->routeSize; i++) {
if (i > 0) {
printf(" ");
}
printf("%d", exactResult->route[i]);
}
printf("\n");
return;
}
if (bestIndex < 0) {
printf("NO VALID SOLUTION\n");
return;
}
printf("%.6f\n", solutions[bestIndex].totalDistance);
for (int vehicle = 0; vehicle < problem->vehicleCount; vehicle++) {
for (int position = 0; position < solutions[bestIndex].routeSizes[vehicle]; position++) {
if (position > 0) {
printf(" ");
}
printf("%d", solutions[bestIndex].routes[vehicle][position]);
}
printf("\n");
}
}
int main(int argc, char *argv[]) {
/*
* --plain modu hocanın otomatik checker kullanması ihtimaline karşı sade çıktı üretir.
* Normal mod ise bizim detaylı analiz ve karşılaştırma raporumuzdur.
*/
int plainMode = 0;
if (argc > 1 && strcmp(argv[1], "--plain") == 0) {
plainMode = 1;
}
/*
* Problem ve Solution büyük structlar içerir.
* static kullanarak stack overflow riskini azaltıyoruz.
*/
static Problem problem;
static Solution solutions[3];
static ExactResult exactResult;
readInput(&problem);
buildDistanceMatrix(&problem);
runExactBacktrackingForSmallInstance(&problem, &exactResult);
createSequentialBaseline(&problem, &solutions[0]);
createNearestNeighborTwoOptSolution(&problem, &solutions[1]);
createILSTwoOptSolution(&problem, &solutions[2], DEFAULT_ILS_TIME_LIMIT_SECONDS);
if (plainMode) {
printPlainOutput(&problem, solutions, 3, &exactResult);
return 0;
}
printInputSummary(&problem);
printComparisonTable(&problem, solutions, 3, &exactResult);
printExactResult(&exactResult);
int bestIndex = findBestHeuristicIndex(solutions, 3);
if (bestIndex >= 0) {
printf("\nBest valid heuristic: %s\n", solutions[bestIndex].algorithmName);
printf("Best heuristic distance: %.6f\n", solutions[bestIndex].totalDistance);
printValidationDetails(&solutions[bestIndex]);
printSolutionRoutes(&problem, &solutions[bestIndex]);
} else {
printf("\nNo valid heuristic solution found.\n");
}
return 0;
}