`

The Hungarian Algorithm

阅读更多

匈牙利算法又称KM算法,这是一个组合优化算法,

解决分配问题,维基地址:http://en.wikipedia.org/wiki/KM_algorithm

 

Assumption: There are n “jobs” and n “machines”.


Step 0: If necessary, convert the problem from a maximum assignment into a minimum
assignment. We do this by letting C = maximum value in the assignment matrix.
Replace each cij with C − cij . (see example 2).


Step1: From each row subtract off the row min.


Step 2: From each column subtract off the row column min.


Step 3: Use as few lines as possible to cover all the zeros in the matrix. There is no easy
rule to do this – basically trial and error.
Suppose you use k lines.
• If k < n, let m be the minimum uncovered number. Subtract m from every
uncovered number. Add m to every number covered with two lines. Go back
to the start of step 3.
• If k = n, goto step 4.


Step 4: Starting with the top row, work your way downwards as you make assignments.
An assignment can be (uniquely) made when there is exactly one zero in a row. Once
an assignment it made, delete that row and column from the matrix.
If you cannot make all n assignments and all the remaining rows contain more than
one zero, switch to columns. Starting with the left column, work your way rightwards
as you make assignments.
Iterate between row assignments and column assignments until you’ve made as many
unique assignments as possible. If still haven’t made n assignments and you cannot
make a unique assignment either with rows or columns, make one arbitrarily by
selecting a cell with a zero in it. Then try to make unique row and/or column
assignments. (See the examples below).

分享到:
评论

相关推荐

    The Assignment Problem and The Hungarian Method

    标题《The Assignment Problem and The Hungarian Method》和描述《关于匈牙利算法的一个文档,匈牙利算法能解决常见的矩形分配问题。》均指向同一个概念——匈牙利算法及其在解决分配问题中的应用。本文将详细介绍...

    The Hungarian Method for The Assignment Problem

    著名的匈牙利算法介绍,Hungarian algorithm,用于解决矩形分配问题。该文档是Springer出版图书“50 Years of Integer Programming 1958-2008”的第二章节。

    munkres assignment algorithm

    The algorithm for munkres assignment allocation

    graph theory

    在二分图中,最大匹配问题(Maximum Matching in Bipartite Graphs)可利用匈牙利算法(The Hungarian Algorithm)解决。而运输网络中的最大流问题(Maximum Flow in a Transport Network)可应用Ford-Fulkerson算法...

    Munkres 分配算法的C ++ 实现的 Python 包装器

    Munkres 使用 Hungarian/Munkres 算法计算分配的最小...可以使用 Bougeois 和 Lassalle 在An extension of the Minkres Algorithm for the Assignment Problem to Rectangular Matrices中提供的算法处理非平方成本矩阵

    MOT sort 算法源码

    MOT Sort算法的核心思想基于卡尔曼滤波器(Kalman Filter)和匈牙利匹配算法(Hungarian Algorithm)。卡尔曼滤波器用于预测目标的未来位置,而匈牙利算法则用于解决最优分配问题,确保每个已跟踪的目标都能正确地与...

    sort-deepsort-yolov3-ROS-master.zip

    - **匈牙利算法(Hungarian Algorithm)**:用于解决分配问题,例如在多目标跟踪中,匹配新检测到的目标与已存在的轨迹。 - **特征匹配(Feature Matching)**:DeepSORT利用深度学习模型提取的特征,如ReID(Re-...

    Tricks of the Windows video Game Programming---part1

    Hungarian Notation........................55 Variable Naming ..............................................................................56 Function Naming........................................

    ACM模板(几乎全)

    - **KM算法**(Kuhn-Munkres Algorithm 或 Hungarian Algorithm)也可以用来解决二分图匹配问题,特别是当图中的边有权重时。 #### 1.12 网络流 - **最大流**:在网络流问题中,最大流是指从源点到汇点的最大流量...

Global site tag (gtag.js) - Google Analytics