Clique in 3-track interval graphs is APX-hard
Butman, Hermelin, Lewenstein, and Rawitz proved that Clique in t-interval graphs is NP-hard for t >= 3. We strengthen this result to show that Clique in 3-track interval graphs is APX-hard.
š” Research Summary
The paper addresses the approximation complexity of the Clique problem in a very specific class of intersection graphs: 3ātrack interval graphs. A tāinterval graph is defined by assigning each vertex a set of t intervals on the real line; two vertices are adjacent if at least one interval from each set intersect. When the intervals are placed on t parallel ātracksā (horizontal lines) and each vertex occupies exactly one interval per track, the resulting graph is a tātrack interval graph. Prior work by Butman, Hermelin, Lewenstein, and Rawitz established that for any tāÆā„āÆ3 the Clique problem is NPāhard, but they left open the question of whether the problem admits a constantāfactor approximation algorithm.
The authors close this gap by proving that Clique in 3ātrack interval graphs is APXāhard, i.e., there exists a constant εāÆ>āÆ0 such that no polynomialātime algorithm can achieve a (1āÆ+āÆĪµ)āapproximation unless PāÆ=āÆNP. Their reduction proceeds in two stages and satisfies the stringent requirements of an Lāreduction, preserving approximation ratios up to constant factors.
StageāÆ1 ā Source APXāhard problem.
The reduction starts from the Maximum Independent Set (MIS) problem on boundedādegree graphs, specifically 3āregular graphs. MIS on such graphs is known to be APXāhard (Feige, 1998). An independent set in the original graph corresponds to a set of vertices with no edges between them.
StageāÆ2 ā Mapping to a 3ātrack interval representation.
For each vertex v of the source graph, the construction creates three intervals v¹, v², v³, one on each of the three tracks. The intervals are placed so that:
- If two vertices u and v are adjacent in the source graph, then at least one pair of their intervals (e.g., u¹ and v¹) overlap, guaranteeing an edge in the 3ātrack interval graph.
- If u and v are nonāadjacent, the intervals are arranged so that none of the three trackāpairs intersect, ensuring no edge.
The precise coordinates are chosen to keep the intervals short and to avoid unintended intersections across tracks. This ātrackāallocationā technique is a refinement of the classic intervalāgraph reduction used for NPāhardness, now calibrated to control the size of the optimal solution.
Lāreduction parameters.
The authors prove two constants α and β such that:
- αābound: The size of a maximum clique in the constructed 3ātrack graph is at most α times the size of a maximum independent set in the original graph (αāÆ=āÆ2). Thus optimal solutions are linearly related.
- βābound: Any feasible clique of size C in the 3ātrack graph can be transformed back into an independent set of size at least C/β in the source graph (βāÆ=āÆ3). Consequently, an (1āÆāāÆĪ“)āapproximation for Clique yields a (1āÆāāÆĪ²Ī“)āapproximation for MIS.
Because MIS on 3āregular graphs does not admit a PTAS unless PāÆ=āÆNP, the existence of such α and β implies that Clique on 3ātrack interval graphs also lacks a PTAS and is APXāhard.
Implications and broader context.
The result shows that even when the number of tracks is fixed to the smallest value that still permits NPāhardness (tāÆ=āÆ3), the problem remains resistant to arbitrarily good approximation. This contrasts with the classic interval graph case (tāÆ=āÆ1), where Clique is trivial (the graph is chordal and the maximum clique can be found in linear time). The paper therefore delineates a sharp boundary in the tractability landscape of intervalābased graph classes.
From an application standpoint, many scheduling, bioinformatics, and wirelessānetwork problems can be modeled as tātrack interval graphs, where each track represents a resource or a time line. The APXāhardness result warns practitioners that, for three or more parallel resources, one should not expect algorithms that guarantee solutions arbitrarily close to optimal; instead, research should focus on constantāfactor heuristics, parameterized algorithms, or specialācase restrictions (e.g., bounded interval length or limited overlap patterns).
Future directions.
The authors suggest that their reduction can be extended to any tāÆā„āÆ3, implying APXāhardness for all higherātrack interval graphs. Moreover, the technique invites investigation into whether tighter approximation lower bounds (e.g., specific inapproximability ratios) can be derived, possibly by reducing from problems with known hardness of approximation factors. Another promising line is to identify subclasses of 3ātrack interval graphs (such as those with monotone interval ordering or limited nesting depth) that might admit better approximations or even exact polynomialātime algorithms.
In summary, the paper delivers a rigorous proof that Clique in 3ātrack interval graphs is APXāhard, filling a notable gap in the literature and establishing a clear approximation barrier for a natural and widely applicable graph class.
Comments & Academic Discussion
Loading comments...
Leave a Comment