Partial Connected Red-Blue Dominating Set
- Partial Connected Red-Blue Dominating Set is a framework that generalizes coverage problems by integrating connectivity constraints within a bipartite graph setting.
- It employs fixed-parameter tractable algorithms and parameterized approximation schemes to overcome inapproximability and W[1]-hardness challenges.
- The approach leverages Steiner out-tree reductions and twin-width based dynamic programming to provide efficient solutions under various graph restrictions.
The Partial Connected Red-Blue Dominating Set (ConnRBDS) problem is a unifying formalism for a range of coverage problems under connectivity constraints in graphs. It generalizes classical maximum coverage, partial dominating set, and partial vertex cover problems by introducing a bipartite framework with an auxiliary connectivity requirement, tightly connecting the domains of parameterized complexity, approximation algorithms, and structural graph theory (Inamdar et al., 13 Jan 2026).
1. Problem Definition and Formal Framework
ConnRBDS is defined over two graphs sharing a common “red” vertex set and a set of “blue” vertices:
- Incidence (Coverage) Graph: , a bipartite graph where if red vertex dominates blue vertex .
- Connectivity (Constraint) Graph: , expressing structural requirements (e.g., connectivity) on red vertices.
Instance: , , integers and .
Question: Does there exist such that , is connected, and ?
Two canonical optimization variants are frequently studied:
- Maximum Coverage under Connectivity: .
- Minimum Size for Target Coverage: .
An -approximation yields with and , or reports infeasibility if the exact -goal is impossible.
2. Hardness Landscape
ConnRBDS inherits significant inapproximability and parameterized hardness from classical coverage problems:
- Classical Inapproximability: No polynomial-time -approximation exists for coverage, unless . This barrier propagates to ConnRBDS via reductions from the classical Max Coverage problem (Inamdar et al., 13 Jan 2026).
- $\W[1]$-Hardness Parameterized by : Even when is a clique (no real connectivity constraint) or star, and is 3-degenerate, ConnRBDS is $\W[1]$-hard in . This is shown by a reduction from Partial Dominating Set on 2-degenerate graphs.
- ETH-Based Lower Bounds: No -time -approximation is achievable (size-side) unless ETH fails. Reductions from the Dominating Set problem enforce this barrier.
- ConnPVC Variant: Restricting blue vertices to degree 2 (ConnPVC) remains $\W[1]$-hard [Guo–Niedermeier–Wahlström WG 2007].
A summary of the hardness results is presented below:
| Problem Variant | Hardness Class | Restriction |
|---|---|---|
| Max Coverage under Connectivity | -inapprox., unless | General graphs |
| Parameterized by | $\W[1]$-hard | clique/star, 3-degenerate |
| ConnPVC (degree 2 blues) | $\W[1]$-hard | All blue degrees 2 |
3. Fixed-Parameter Tractability by Coverage Target
Despite the $\W[1]$-hardness in , ConnRBDS is fixed-parameter tractable (FPT) when parameterized by the coverage threshold .
- Steiner Out-Tree Reduction: The problem reduces in FPT time to the (Relaxed) Directed Steiner Out-Tree problem, which seeks an out-tree covering a set of terminals within vertex/edge budget. This intermediate formulation allows the use of an FPT algorithm running in randomized (or deterministic) time (Inamdar et al., 13 Jan 2026).
- Correctness: There is a correspondence between solutions of ConnRBDS and Steiner out-trees spanning terminals associated with covered blues, respecting connectivity and cardinality constraints.
This suggests that, even with arbitrary connectivity constraints, progress is possible in the parameter .
4. Parameterized Approximation Schemes for Biclique-Free Incidence Graphs
For incidence graphs excluding (biclique-free), ConnRBDS admits two complementary parameterized approximation frameworks.
4.1 Efficient Parameterized Approximation Scheme (EPAS) for Coverage
- Input: , -free, .
- Guarantee: In time, either return a connected , , , or assert impossibility for .
- Key Steps: Construction of a conflict graph on , random separation via lopsided-universal families, component filtering, edge sparsification within components, weight assignment on red vertices, and max-weight -tree subtree enumeration in (with established enumeration and dynamic programming schemes).
4.2 Parameterized Approximation Scheme (PAS) for Size Minimization
- Input: , -free, .
- Guarantee: In time, obtain a connected , , covering at least blue vertices.
- Techniques: Seed-cover lemma to identify small hub sets, recursive branching on seed selection, localized EPAS-instances, and path augmentation for high-degree case analysis.
A table summarizing these schemes:
Crucially, these schemes do not restrict , generalizing prior coverage approximations to the connectivity-constrained setting (Inamdar et al., 13 Jan 2026).
5. FPT Algorithms on Bounded Twin-Width Graphs
ConnRBDS is also fixed-parameter tractable in for graphs with bounded twin-width given a contraction sequence:
- Formalization: The property "exists , , connected, dominating blue vertices" is expressible in first-order logic with counting quantifiers (FO+counting).
- Algorithmic Strategy: Executes dynamic programming over the contraction sequence of width . Maintains extended profile tables, propagates connectivity and coverage, and ensures that at each step profiles have at most clusters, yielding table size at each level.
- Complexity: time, thus FPT in (Balabán et al., 25 Apr 2025).
A plausible implication is that a broad class of structural graph constraints can be accommodated using this logical and DP framework.
6. Connections, Extensions, and Open Directions
ConnRBDS serves as a unifying model, clarifying the boundary between inapproximability and FPT-approximability for coverage problems under connectivity constraints (Inamdar et al., 13 Jan 2026).
- Neighborhood Sparsifiers: The use of sparsifiers—small families of weight functions—facilitates reduction of coverage objectives to weighted connectivity, a tool with potential in broader scenarios.
- Dichotomy: For unrestricted , FPT approximations better than for coverage are precluded under ETH. For -free incidences, parameterized schemes become available.
- Other Constraints: Generalization to independence, matroid, vertex-connectivity, or edge-capacity constraints in is possible via the same two-graph paradigm.
- Compression and Kernels: ConnPVC’s $\W[1]$-hardness obviates -approximate polynomial compression, contrasting with unconstrained Max Coverage where approximation kernels are possible.
This suggests that the analytic methodologies and combinatorial principles of ConnRBDS will continue to inform algorithmic advances in both theoretical and applied network design, sensor placement, and coverage planning in large-scale graphs.