-
Notifications
You must be signed in to change notification settings - Fork 5
/
hungarian.cpp
602 lines (522 loc) · 19.5 KB
/
hungarian.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
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
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
/* This is an implementation of the Hungarian algorithm in C++
* The Hungarian algorithm, also know as Munkres or Kuhn-Munkres
* algorithm is usefull for solving the assignment problem.
*
* Assignment problem: Let C be an n x n matrix
* representing the costs of each of n workers to perform any of n jobs.
* The assignment problem is to assign jobs to workers so as to
* minimize the total cost. Since each worker can perform only one job and
* each job can be assigned to only one worker the assignments constitute
* an independent set of the matrix C.
*
* It is a port heavily based on http://csclab.murraystate.edu/~bob.pilgrim/445/munkres.html
*
* This version is written by Fernando B. Giannasi */
#include <algorithm>
#include <cmath>
#include <iostream>
#include <iterator>
#include <limits>
#include <list>
#include <string>
#include <type_traits>
#include <vector>
namespace Munkres {
/* Utility function to print Matrix */
template<template <typename, typename...> class Container,
typename T,
typename... Args>
//disable for string, which is std::basic_string<char>, a container itself
typename std::enable_if<!std::is_convertible<Container<T, Args...>, std::string>::value &&
!std::is_constructible<Container<T, Args...>, std::string>::value,
std::ostream&>::type
operator<<(std::ostream& os, const Container<T, Args...>& con)
{
os << " ";
for (auto& elem: con)
os << elem << " ";
os << "\n";
return os;
}
/* Handle negative elements if present. If allowed = true, add abs(minval) to
* every element to create one zero. Else throw an exception */
template<typename T>
void handle_negatives(std::vector<std::vector<T>>& matrix,
bool allowed = true)
{
T minval = std::numeric_limits<T>::max();
for (auto& elem: matrix)
for (auto& num: elem)
minval = std::min(minval, num);
if (minval < 0) {
if (!allowed) { //throw
throw std::runtime_error("Only non-negative values allowed");
}
else { // add abs(minval) to every element to create one zero
minval = abs(minval);
for (auto& elem: matrix)
for (auto& num: elem)
num += minval;
}
}
}
/* Ensure that the matrix is square by the addition of dummy rows/columns if necessary */
template<typename T>
void pad_matrix(std::vector<std::vector<T>>& matrix)
{
std::size_t i_size = matrix.size();
std::size_t j_size = matrix[0].size();
if (i_size > j_size) {
for (auto& vec: matrix)
vec.resize(i_size, std::numeric_limits<T>::max());
}
else if (i_size < j_size) {
while (matrix.size() < j_size)
matrix.push_back(std::vector<T>(j_size, std::numeric_limits<T>::max()));
}
}
/* For each row of the matrix, find the smallest element and subtract it from every
* element in its row.
* For each col of the matrix, find the smallest element and subtract it from every
* element in its col. Go to Step 2. */
template<typename T>
void step1(std::vector<std::vector<T>>& matrix,
int& step)
{
// process rows
for (auto& row: matrix) {
auto smallest = *std::min_element(begin(row), end(row));
if (smallest > 0)
for (auto& n: row)
n -= smallest;
}
// process cols
int sz = matrix.size(); // square matrix is granted
for (int j=0; j<sz; ++j) {
T minval = std::numeric_limits<T>::max();
for (int i=0; i<sz; ++i) {
minval = std::min(minval, matrix[i][j]);
}
if (minval > 0) {
for (int i=0; i<sz; ++i) {
matrix[i][j] -= minval;
}
}
}
step = 2;
}
/* helper to clear the temporary vectors */
inline void clear_covers(std::vector<int>& cover)
{
for (auto& n: cover) n = 0;
}
/* Find a zero (Z) in the resulting matrix. If there is no starred zero in its row or
* column, star Z. Repeat for each element in the matrix. Go to Step 3. In this step,
* we introduce the mask matrix M, which in the same dimensions as the cost matrix and
* is used to star and prime zeros of the cost matrix. If M(i,j)=1 then C(i,j) is a
* starred zero, If M(i,j)=2 then C(i,j) is a primed zero. We also define two vectors
* RowCover and ColCover that are used to "cover" the rows and columns of the cost matrix.
* In the nested loop (over indices i and j) we check to see if C(i,j) is a zero value
* and if its column or row is not already covered. If not then we star this zero
* (i.e. set M(i,j)=1) and cover its row and column (i.e. set R_cov(i)=1 and C_cov(j)=1).
* Before we go on to Step 3, we uncover all rows and columns so that we can use the
* cover vectors to help us count the number of starred zeros. */
template<typename T>
void step2(const std::vector<std::vector<T>>& matrix,
std::vector<std::vector<int>>& M,
std::vector<int>& RowCover,
std::vector<int>& ColCover,
int& step)
{
int sz = matrix.size();
for (int r=0; r<sz; ++r)
for (int c=0; c<sz; ++c)
if (matrix[r][c] == 0)
if (RowCover[r] == 0 && ColCover[c] == 0) {
M[r][c] = 1;
RowCover[r] = 1;
ColCover[c] = 1;
}
clear_covers(RowCover); // reset vectors for posterior using
clear_covers(ColCover);
step = 3;
}
/* Cover each column containing a starred zero. If K columns are covered, the starred
* zeros describe a complete set of unique assignments. In this case, Go to DONE,
* otherwise, Go to Step 4. Once we have searched the entire cost matrix, we count the
* number of independent zeros found. If we have found (and starred) K independent zeros
* then we are done. If not we procede to Step 4.*/
void step3(const std::vector<std::vector<int>>& M,
std::vector<int>& ColCover,
int& step)
{
int sz = M.size();
int colcount = 0;
for (int r=0; r<sz; ++r)
for (int c=0; c<sz; ++c)
if (M[r][c] == 1)
ColCover[c] = 1;
for (auto& n: ColCover)
if (n == 1)
colcount++;
if (colcount >= sz) {
step = 7; // solution found
}
else {
step = 4;
}
}
// Following functions to support step 4
template<typename T>
void find_a_zero(int& row,
int& col,
const std::vector<std::vector<T>>& matrix,
const std::vector<int>& RowCover,
const std::vector<int>& ColCover)
{
int r = 0;
int c = 0;
int sz = matrix.size();
bool done = false;
row = -1;
col = -1;
while (!done) {
c = 0;
while (true) {
if (matrix[r][c] == 0 && RowCover[r] == 0 && ColCover[c] == 0) {
row = r;
col = c;
done = true;
}
c += 1;
if (c >= sz || done)
break;
}
r += 1;
if (r >= sz)
done = true;
}
}
bool star_in_row(int row,
const std::vector<std::vector<int>>& M)
{
bool tmp = false;
for (unsigned c = 0; c < M.size(); c++)
if (M[row][c] == 1)
tmp = true;
return tmp;
}
void find_star_in_row(int row,
int& col,
const std::vector<std::vector<int>>& M)
{
col = -1;
for (unsigned c = 0; c < M.size(); c++)
if (M[row][c] == 1)
col = c;
}
/* Find a noncovered zero and prime it. If there is no starred zero in the row containing
* this primed zero, Go to Step 5. Otherwise, cover this row and uncover the column
* containing the starred zero. Continue in this manner until there are no uncovered zeros
* left. Save the smallest uncovered value and Go to Step 6. */
template<typename T>
void step4(const std::vector<std::vector<T>>& matrix,
std::vector<std::vector<int>>& M,
std::vector<int>& RowCover,
std::vector<int>& ColCover,
int& path_row_0,
int& path_col_0,
int& step)
{
int row = -1;
int col = -1;
bool done = false;
while (!done){
find_a_zero(row, col, matrix, RowCover, ColCover);
if (row == -1){
done = true;
step = 6;
}
else {
M[row][col] = 2;
if (star_in_row(row, M)) {
find_star_in_row(row, col, M);
RowCover[row] = 1;
ColCover[col] = 0;
}
else {
done = true;
step = 5;
path_row_0 = row;
path_col_0 = col;
}
}
}
}
// Following functions to support step 5
void find_star_in_col(int c,
int& r,
const std::vector<std::vector<int>>& M)
{
r = -1;
for (unsigned i = 0; i < M.size(); i++)
if (M[i][c] == 1)
r = i;
}
void find_prime_in_row(int r,
int& c,
const std::vector<std::vector<int>>& M)
{
for (unsigned j = 0; j < M.size(); j++)
if (M[r][j] == 2)
c = j;
}
void augment_path(std::vector<std::vector<int>>& path,
int path_count,
std::vector<std::vector<int>>& M)
{
for (int p = 0; p < path_count; p++)
if (M[path[p][0]][path[p][1]] == 1)
M[path[p][0]][path[p][1]] = 0;
else
M[path[p][0]][path[p][1]] = 1;
}
void erase_primes(std::vector<std::vector<int>>& M)
{
for (auto& row: M)
for (auto& val: row)
if (val == 2)
val = 0;
}
/* Construct a series of alternating primed and starred zeros as follows.
* Let Z0 represent the uncovered primed zero found in Step 4. Let Z1 denote the
* starred zero in the column of Z0 (if any). Let Z2 denote the primed zero in the
* row of Z1 (there will always be one). Continue until the series terminates at a
* primed zero that has no starred zero in its column. Unstar each starred zero of
* the series, star each primed zero of the series, erase all primes and uncover every
* line in the matrix. Return to Step 3. You may notice that Step 5 seems vaguely
* familiar. It is a verbal description of the augmenting path algorithm (for solving
* the maximal matching problem). */
void step5(std::vector<std::vector<int>>& path,
int path_row_0,
int path_col_0,
std::vector<std::vector<int>>& M,
std::vector<int>& RowCover,
std::vector<int>& ColCover,
int& step)
{
int r = -1;
int c = -1;
int path_count = 1;
path[path_count - 1][0] = path_row_0;
path[path_count - 1][1] = path_col_0;
bool done = false;
while (!done) {
find_star_in_col(path[path_count - 1][1], r, M);
if (r > -1) {
path_count += 1;
path[path_count - 1][0] = r;
path[path_count - 1][1] = path[path_count - 2][1];
}
else {done = true;}
if (!done) {
find_prime_in_row(path[path_count - 1][0], c, M);
path_count += 1;
path[path_count - 1][0] = path[path_count - 2][0];
path[path_count - 1][1] = c;
}
}
augment_path(path, path_count, M);
clear_covers(RowCover);
clear_covers(ColCover);
erase_primes(M);
step = 3;
}
// methods to support step 6
template<typename T>
void find_smallest(T& minval,
const std::vector<std::vector<T>>& matrix,
const std::vector<int>& RowCover,
const std::vector<int>& ColCover)
{
for (unsigned r = 0; r < matrix.size(); r++)
for (unsigned c = 0; c < matrix.size(); c++)
if (RowCover[r] == 0 && ColCover[c] == 0)
if (minval > matrix[r][c])
minval = matrix[r][c];
}
/* Add the value found in Step 4 to every element of each covered row, and subtract it
* from every element of each uncovered column. Return to Step 4 without altering any
* stars, primes, or covered lines. Notice that this step uses the smallest uncovered
* value in the cost matrix to modify the matrix. Even though this step refers to the
* value being found in Step 4 it is more convenient to wait until you reach Step 6
* before searching for this value. It may seem that since the values in the cost
* matrix are being altered, we would lose sight of the original problem.
* However, we are only changing certain values that have already been tested and
* found not to be elements of the minimal assignment. Also we are only changing the
* values by an amount equal to the smallest value in the cost matrix, so we will not
* jump over the optimal (i.e. minimal assignment) with this change. */
template<typename T>
void step6(std::vector<std::vector<T>>& matrix,
const std::vector<int>& RowCover,
const std::vector<int>& ColCover,
int& step)
{
T minval = std::numeric_limits<T>::max();
find_smallest(minval, matrix, RowCover, ColCover);
int sz = matrix.size();
for (int r = 0; r < sz; r++)
for (int c = 0; c < sz; c++) {
if (RowCover[r] == 1)
matrix[r][c] += minval;
if (ColCover[c] == 0)
matrix[r][c] -= minval;
}
step = 4;
}
/* Calculates the optimal cost from mask matrix */
template<template <typename, typename...> class Container,
typename T,
typename... Args>
T output_solution(const Container<Container<T,Args...>>& original,
const std::vector<std::vector<int>>& M)
{
T res = 0;
for (unsigned j=0; j<original.begin()->size(); ++j)
for (unsigned i=0; i<original.size(); ++i)
if (M[i][j]) {
auto it1 = original.begin();
std::advance(it1, i);
auto it2 = it1->begin();
std::advance(it2, j);
res += *it2;
continue;
}
return res;
}
/* Main function of the algorithm */
template<template <typename, typename...> class Container,
typename T,
typename... Args>
typename std::enable_if<std::is_integral<T>::value, T>::type // Work only on integral types
hungarian(const Container<Container<T,Args...>>& original,
bool allow_negatives = true)
{
/* Initialize data structures */
// Work on a vector copy to preserve original matrix
// Didn't passed by value cause needed to access both
std::vector<std::vector<T>> matrix (original.size(),
std::vector<T>(original.begin()->size()));
auto it = original.begin();
for (auto& vec: matrix) {
std::copy(it->begin(), it->end(), vec.begin());
it = std::next(it);
}
// handle negative values -> pass true if allowed or false otherwise
// if it is an unsigned type just skip this step
if (!std::is_unsigned<T>::value) {
handle_negatives(matrix, allow_negatives);
}
// make square matrix
pad_matrix(matrix);
std::size_t sz = matrix.size();
/* The masked matrix M. If M(i,j)=1 then C(i,j) is a starred zero,
* If M(i,j)=2 then C(i,j) is a primed zero. */
std::vector<std::vector<int>> M (sz, std::vector<int>(sz, 0));
/* We also define two vectors RowCover and ColCover that are used to "cover"
*the rows and columns of the cost matrix C*/
std::vector<int> RowCover (sz, 0);
std::vector<int> ColCover (sz, 0);
int path_row_0, path_col_0; //temporary to hold the smallest uncovered value
// Array for the augmenting path algorithm
std::vector<std::vector<int>> path (sz+1, std::vector<int>(2, 0));
/* Now Work The Steps */
bool done = false;
int step = 1;
while (!done) {
switch (step) {
case 1:
step1(matrix, step);
break;
case 2:
step2(matrix, M, RowCover, ColCover, step);
break;
case 3:
step3(M, ColCover, step);
break;
case 4:
step4(matrix, M, RowCover, ColCover, path_row_0, path_col_0, step);
break;
case 5:
step5(path, path_row_0, path_col_0, M, RowCover, ColCover, step);
break;
case 6:
step6(matrix, RowCover, ColCover, step);
break;
case 7:
for (auto& vec: M) {vec.resize(original.begin()->size());}
M.resize(original.size());
done = true;
break;
default:
done = true;
break;
}
}
//Printing part (optional)
std::cout << "Cost Matrix: \n" << original << std::endl
<< "Optimal assignment: \n" << M;
return output_solution(original, M);
}
} // end of namespace munkres
int main() //example of usage
{
using namespace Munkres;
using namespace std;
// work on multiple containers of the STL
list<list<int>> matrix {{85, 12, 36, 83, 50, 96, 12, 1 },
{84, 35, 16, 17, 40, 94, 16, 52},
{14, 16, 8 , 53, 14, 12, 70, 50},
{73, 83, 19, 44, 83, 66, 71, 18},
{36, 45, 29, 4 , 61, 15, 70, 47},
{7 , 14, 11, 69, 57, 32, 37, 81},
{9 , 65, 38, 74, 87, 51, 86, 52},
{52, 40, 56, 10, 42, 2 , 26, 36},
{85, 86, 36, 90, 49, 89, 41, 74},
{40, 67, 2 , 70, 18, 5 , 94, 43},
{85, 12, 36, 83, 50, 96, 12, 1 },
{84, 35, 16, 17, 40, 94, 16, 52},
{14, 16, 8 , 53, 14, 12, 70, 50},
{73, 83, 19, 44, 83, 66, 71, 18},
{36, 45, 29, 4 , 61, 15, 70, 47},
{7 , 14, 11, 69, 57, 32, 37, 81},
{9 , 65, 38, 74, 87, 51, 86, 52},
{52, 40, 56, 10, 42, 2 , 26, 36},
{85, 86, 36, 90, 49, 89, 41, 74},
{40, 67, 2 , 70, 18, 5 , 94, 43}};
auto res = hungarian(matrix);
std::cout << "Optimal cost: " << res << std::endl;
std::cout << "----------------- \n\n";
vector<vector<vector<int>>> tests;
tests.push_back({{25,40,35},
{40,60,35},
{20,40,25}});
tests.push_back({{64,18,75},
{97,60,24},
{87,63,15}});
tests.push_back({{80,40,50,46},
{40,70,20,25},
{30,10,20,30},
{35,20,25,30}});
tests.push_back({{10,19,8,15},
{10,18,7,17},
{13,16,9,14},
{12,19,8,18},
{14,17,10,19}});
for (auto& m: tests) {
auto r = hungarian(m);
std::cout << "Optimal cost: " << r << std::endl;
std::cout << "----------------- \n\n";
}
return 0;
}