加权无向图划分

发布于 2024-10-16 03:32:44 字数 217 浏览 3 评论 0原文

给定一个带有顶点权重 W(V) 的无向循环平面图 G(V,E)、一个嵌入 E(G) 的固定平面以及两个节点 s 和 t,我需要找到 G 的划分,将其分为两个连通分量S(G) 和 T(G),其中 s 在 S(G) 中,t 在 T(G) 中。顶点 s 和 t 都属于嵌入 E(G) 中的外部面。

我希望分区能够很好地平衡 - 它们应该具有几乎相等的顶点权重总和。

请问有什么好的算法的想法吗?

Given an undirected cyclic planar graph G(V,E) with vertex weights W(V), a fixed plane embedding E(G) and two nodes s and t, I need to find a partitioning of G that divides it into two connected components S(G) and T(G) with s being in S(G) and t being in T(G). Vertices s and t both belong to the external face in the embedding E(G).

I wish to have the partitions well balanced - they should have nearly equal sums of vertex weights.

Any ideas for a good algorithm please?

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

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

发布评论

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

评论(2

柒夜笙歌凉 2024-10-23 03:32:44

它是某种平衡切割问题,通常是 NP 完全问题,并且具有对数因子近似算法。如果我是正确的,那么它在平面图中是弱 NP 困难的,用 naveen garg 的 2 近似算法。(在 google 上查看它)

It is some sort of balanced cut problem which is NP Complete in general and has logarithmic factor approximation algorithms. If im correct then it is weakly NP hard in planar graphs with 2 approx algorithm by naveen garg.(chk it on google)

递刀给你 2024-10-23 03:32:44

计算最小生成树并与 AVL 树平衡属性结合使用?

Compute a Minimum Spanning Tree and use in conjunction with an AVL Tree balancing properties?

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