set splitting problem

File:Set splitting.svg. The vertices make up the set S, and the edges make up the family of subsets F. The vertices are colored such that every edge has at least one vertex of each color (in this case, red and green).]]

In computational complexity theory, the set splitting problem is the following decision problem: given a family F of subsets of a finite set S, decide whether there exists a partition of S into two subsets S1, S2 such that all elements of F are split by this partition, i.e., none of the elements of F is completely in S1 or S2. Set Splitting is one of Garey & Johnson's classical NP-complete problems. The problem is sometimes called hypergraph 2-colorability.

Variants

File:E3-set splitting.svg

The optimization version of this problem is called max set splitting and requires finding the partition which maximizes the number of split elements of F. It is an APX-complete problem and hence in NPO.

The set k-splitting problem is stated as follows: given S, F, and an integer k, does there exist a partition of S which splits at least k subsets of F? The original formulation is the restricted case with k equal to the cardinality of F. The Set k-Splitting is fixed-parameter tractable, i.e., if k taken to be a fixed parameter, rather than a part of the input, then a polynomial algorithm exists for any fixed k. Dehne, Fellows and Rosamond presented an algorithm that solves it in time O(f(k) n^c)

for some function f and constant c.

When each element of F is restricted to be of cardinality exactly k, the decision variant is called Ek-set splitting and the optimization version max Ek-set splitting. For k > 2 the former remains NP complete, and for k ≥ 2 the latter remains APX complete. For k ≥ 4, Ek-Set Splitting is approximation resistant. That is, unless P=NP, there is no polynomial-time (factor) approximation algorithm which does essentially better than a random partition.

The weighted set splitting is a variant in which the subsets in F have weights and the objective is to maximize the total weight of the split subsets.

Connection to other problems

Set splitting is special case of the not-all-equal satisfiability problem without negated variables. Additionally, Ek-set splitting equals non-monochromatic graph coloring of k-uniform hypergraphs. For k=2, the optimization variant reduces to the well-known maximum cut.

References

{{cite conference

| first1=Frank|last1=Dehne | first2=Michael|last2=Fellows | first3=Frances|last3=Rosamond

| title = An FPT Algorithm for Set Splitting | year = 2003

| conference = Graph Theoretic Concepts in Computer Science (WG2003), Lecture Notes in Computer Science

| publisher = Springer

|url=http://www.mrfellows.net/papers/FDR03_SetSplitting.pdf

|volume=2880

|pages=180–191

}}

{{cite book

| first1 = Michael R. | last1 = Garey | authorlink1 = Michael Garey

| first2 = David S. | last2 = Johnson | authorlink2 = David S. Johnson

| title = Computers and Intractability: A Guide to the Theory of NP-Completeness | year = 1979

| publisher = W.H. Freeman | location = New York | isbn = 0-7167-1045-5

}}

{{cite journal

| first = Venkatesan | last = Guruswami | authorlink = Venkatesan Guruswami

| title = Inapproximability Results for Set Splitting and Satisfiability Problems with no Mixed Clauses | year = 2003

| journal = Algorithmica | publisher = Springer

| doi = 10.1007/s00453-003-1072-z | volume=38 | issue = 3 | pages=451–469

| s2cid = 15541433 }}

{{cite journal

| first = Johan | last = Håstad | authorlink = Johan Håstad

| title = Some Optimal Inapproximability Results | year = 2001

| doi = 10.1145/502090.502098

| journal = Journal of the ACM | publisher = Association for Computing Machinery | volume=48 | issue = 4 | pages=798–859

| s2cid = 5120748 }}

{{cite conference

| first = László | last = Lovász | authorlink = László Lovász

| title = Coverings and Colorings of Hypergraphs | year = 1973

| conference = 4th Southeastern Conference on Combinatorics, Graph Theory, and Computing

}}

{{cite journal

| first = Erez | last = Petrank | authorlink = Erez Petrank

| title = The Hardness of Approximation: Gap Location | year = 1994

| journal = Computational Complexity | volume = 4 | issue = 2 | pages = 133–157 | publisher = Springer

| doi = 10.1007/BF01202286 | s2cid = 16433553 }}

Category:NP-complete problems