Skip to content

Commit 625006f

Browse files
committed
fix tabulation
1 parent 69b0702 commit 625006f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/graph/hungarian-algorithm.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -288,9 +288,9 @@ Here are a few examples related to the assignment problem, from very trivial to
288288
- **The Problem of Potentials**. Given a matrix $A[1 \ldots n][1 \ldots m]$, it is required to find two arrays $u[1 \ldots n]$ and $v[1 \ldots m]$ such that, for any $i$ and $j$, $u[i] + v[j] \leq a[i][j]$ and the sum of elements of arrays $u$ and $v$ is maximum.<br>
289289
Knowing the Hungarian algorithm, the solution to this problem will not be difficult: the Hungarian algorithm just finds such a potential $u, v$ that satisfies the condition of the problem. On the other hand, without knowledge of the Hungarian algorithm, it seems almost impossible to solve such a problem.
290290

291-
!!! info "Remark"
291+
!!! info "Remark"
292292

293-
This task is also called the **dual problem** of the assignment problem: minimizing the total cost of the assignment is equivalent to maximizing the sum of the potentials.
293+
This task is also called the **dual problem** of the assignment problem: minimizing the total cost of the assignment is equivalent to maximizing the sum of the potentials.
294294

295295
## Literature
296296

0 commit comments

Comments
 (0)