-
Notifications
You must be signed in to change notification settings - Fork 3
/
jonkervolgenant.cpp
177 lines (141 loc) · 5.53 KB
/
jonkervolgenant.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
/*
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following
disclaimer in the documentation and/or other materials provided
with the distribution.
3. Neither the name of the copyright holder nor the names of its
contributors may be used to endorse or promote products derived
from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This code implements the Jonker-Volgenant algorithm for the rectangular
assignment problem:
R. Jonker and A. Volgenant. A Shortest Augmenting Path Algorithm for
Dense and Sparse Linear Assignment Problems. *Computing*, 38:325-340
December 1987.
The code is based on the pseudocode described in pages
1685-1686 of:
DF Crouse. On implementing 2D rectangular assignment algorithms.
IEEE Transactions on Aerospace and Electronic Systems
52(4):1679-1696, August 2016
doi: 10.1109/TAES.2016.140952
Author: PM Larsen
*/
#include <algorithm>
#include <vector>
static int augmenting_path(int nc, std::vector<double>& cost,
std::vector<double> &u, std::vector<double> &v,
std::vector<int> &path, std::vector<int> &row4col,
std::vector<double> &shortestPathCosts, int i,
std::vector<bool> &SR, std::vector<bool> &SC,
double *p_minVal) {
double minVal = 0;
int num_remaining = nc;
std::vector<int> remaining(nc);
std::iota(remaining.begin(), remaining.end(), 0);
std::fill(SR.begin(), SR.end(), false);
std::fill(SC.begin(), SC.end(), false);
std::fill(shortestPathCosts.begin(), shortestPathCosts.end(), INFINITY);
// find shortest augmenting path
int sink = -1;
while (sink == -1) {
int index = -1;
double lowest = INFINITY;
for (int it = 0; it < num_remaining; it++) {
int j = remaining[it];
double r = minVal + cost[i * nc + j] - u[i] - v[j];
if (r < shortestPathCosts[j]) {
path[j] = i;
shortestPathCosts[j] = r;
}
if (shortestPathCosts[j] < lowest
|| (shortestPathCosts[j] == lowest && row4col[j] == -1)) {
lowest = shortestPathCosts[j];
index = it;
}
}
minVal = lowest;
int j = remaining[index];
if (minVal == INFINITY) // infeasible cost matrix
return -1;
if (row4col[j] == -1)
sink = j;
else
i = row4col[j];
SR[i] = true;
SC[j] = true;
remaining[index] = remaining[--num_remaining];
remaining.resize(num_remaining);
}
*p_minVal = minVal;
return sink;
}
static int _solve(int nr, int nc, double *input_cost,
int64_t *output_col4row) {
// build a non-negative cost matrix
std::vector<double> cost(nr * nc);
double minval = *std::min_element(input_cost, input_cost + nr * nc);
for (int i = 0; i < nr * nc; i++)
cost[i] = input_cost[i] - minval;
// initialize variables
std::vector<double> u(nr, 0);
std::vector<double> v(nc, 0);
std::vector<double> shortestPathCosts(nc);
std::vector<int> path(nc, -1);
std::vector<int> col4row(nr, -1);
std::vector<int> row4col(nc, -1);
std::vector<bool> SR(nr);
std::vector<bool> SC(nc);
// iteratively build the solution
for (int curRow = 0; curRow < nr; curRow++) {
double minVal;
int sink = augmenting_path(nc, cost, u, v, path, row4col,
shortestPathCosts, curRow, SR, SC, &minVal);
if (sink < 0)
return -1;
// update dual variables
u[curRow] += minVal;
for (int i = 0; i < nr; i++)
if (SR[i] && i != curRow)
u[i] += minVal - shortestPathCosts[col4row[i]];
for (int i = 0; i < nc; i++)
if (SC[i])
v[i] -= minVal - shortestPathCosts[i];
// augment previous solution
int j = sink;
while (1) {
int i = path[j];
row4col[j] = i;
std::swap(col4row[i], j);
if (i == curRow)
break;
}
}
for (int i = 0; i < nr; i++)
output_col4row[i] = col4row[i];
return 0;
}
#ifdef __cplusplus
extern "C" {
#endif
int solve_jonker_volgenant(int nr, int nc, double *input_cost,
int64_t *col4row) {
return _solve(nr, nc, input_cost, col4row);
}
#ifdef __cplusplus
}
#endif