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?

link|improve this question
feedback

2 Answers

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

link|improve this answer
The spanning tree will not be binary and the usage of AVL for balancing by vertex weights is unclear to me. Do you have any details on your idea? Yet, I'm rather confused. – user605379 Feb 6 '11 at 18:54
feedback

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)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.