Max Cut

Input

Graph G=(V,E)G = (V, E), weight w(e)Z+w(e) \in \mathbb{Z}^{+} for each eEe \in E, positive integer KK.

Question

Is there a partition of VV into disjoint sets V1V_1 and V2V_2 such that the sum of the weights of the edges from EE that have one endpoint in V1V_1 and one endpoint in V2V_2 is at least KK?

Classes

Comments

Remains NP-complete if w(e)=1w(e) = 1 for all eEe \in E (the [problem:simple-max-cut] problem) (Garey et al., 1976), and if, in addition, no vertex has degree exceeding 3 (Yannakakis, 1978). Can be solved in polynomial time if GG is planar (Hadlock, 1975), (Orlova & Dorfman, 1972).

Proofs

NP-complete

Transformation from Maximum 2-Satisfiability (Karp, 1972).

Reducible from

References