分配概率流网络解决方案

发布于 2024-12-19 13:35:41 字数 188 浏览 2 评论 0原文

我有成本矩阵 C 的分配问题,例如:

21 30 26 16 20
27 29 28 20 38
39 25 21 19 23
28 24 30 29 16
30 33 32 17 31

其中 C[i][j] 表示工人 i 执行工作 j 的成本。

如何用网络流算法解决这个问题?

I have an assignment problem with cost matrix C, eg:

21 30 26 16 20
27 29 28 20 38
39 25 21 19 23
28 24 30 29 16
30 33 32 17 31

where C[i][j] means cost for worker i to do job j.

How can I solve this with a network flow algorithm?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

雅心素梦 2024-12-26 13:35:41

如果您仍在寻找解决方案,可以将其作为 来解决最小成本流问题

  1. 创建一个源节点,通过边连接到您的 N 个工作节点
    容量 1 和成本 0
  2. 通过容量 1 和成本 C[i][j] 的边将每个工作人员 i 连接到每个作业 j
  3. 最后将每个作业连接到具有容量 1 和成本 0 的边的汇节点

您的问题相当于最小化将 N 个流单元通过网络从源推送到接收器的成本。

In case you are still looking for a solution, you can solve this as a Minimum-cost flow problem:

  1. Create a source node connected to your N workers by edges with
    capacity 1 and cost 0
  2. Connect each worker i to each job j by edges of capacity 1 and cost C[i][j]
  3. Finally connect each job to a sink node with edges of capacity 1 and cost 0

Your problem is equivalent to minimizing the cost of pushing N flow units through the network from source to sink.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文