Table of Contents
Fetching ...

Dominating Set Knapsack: Profit Optimization on Dominating Sets

Sipra Singh

TL;DR

Dominating Set Knapsack studies profit optimization under a knapsack budget with a domination constraint on graphs. The authors establish strong NP-hardness in general and bipartite graphs, while providing a pseudo-polynomial DP for trees. They place the problem in the parameterized complexity landscape, showing $\mathsf{W[3]}$-hardness for solution-size parameterization, but fixed-parameter tractability when parameterized by treewidth or Vertex Cover Knapsack size, with analogous results for related variants. The work highlights both fundamental intractability and practical tractability regimes, guiding algorithm design for network influence and resource allocation in graph-structured settings.

Abstract

In a large-scale network, we want to choose some influential nodes to make a profit by paying some cost within a limited budget so that we do not have to spend more budget on some nodes adjacent to the chosen nodes; our problem is the graph-theoretic representation of it. We define our problem, Dominating Set Knapsack, by attaching the knapsack problem with the dominating set on graphs. Each vertex $v~(\in V) $ is associated with a cost factor $w(v)$ and a profit amount $α(v)$. We aim to choose some vertices within a fixed budget $(s)$ that give maximum profit so that we do not need to choose their 1-hop neighbors. We show that the Dominating Set Knapsack problem is strongly NPC even when restricted to bipartite graphs, but weakly NPC for star graphs. We present a pseudo-polynomial time algorithm for trees in time $O(n\cdot min\{s^2, (α(V))^2\})$. We show that Dominating Set Knapsack is unlikely to be Fixed Parameter Tractable (FPT) by proving that it is W[2]-hard parameterized by the solution size. We developed FPT algorithms with running time $O(4^{tw}\cdot n^{O(1)} min\{s^2,{α(V)}^2\})$ and $O(2^{vck-1}\cdot n^{O(1)} min\{s^2,{α(V)}^2\})$, where $tw$ represents the $tw$ of the given graph $G(V,E)$, $vck$ is the solution size of the Vertex Cover Knapsack, $s$ is the capacity or size of the knapsack and $α(V)=\sum_{v\in V}α(v)$. We obtained similar results for other variants $k-$Dominating Set Knapsack and Minimal Dominating Set Knapsack, where $k$ is the size of the dominating set.

Dominating Set Knapsack: Profit Optimization on Dominating Sets

TL;DR

Dominating Set Knapsack studies profit optimization under a knapsack budget with a domination constraint on graphs. The authors establish strong NP-hardness in general and bipartite graphs, while providing a pseudo-polynomial DP for trees. They place the problem in the parameterized complexity landscape, showing -hardness for solution-size parameterization, but fixed-parameter tractability when parameterized by treewidth or Vertex Cover Knapsack size, with analogous results for related variants. The work highlights both fundamental intractability and practical tractability regimes, guiding algorithm design for network influence and resource allocation in graph-structured settings.

Abstract

In a large-scale network, we want to choose some influential nodes to make a profit by paying some cost within a limited budget so that we do not have to spend more budget on some nodes adjacent to the chosen nodes; our problem is the graph-theoretic representation of it. We define our problem, Dominating Set Knapsack, by attaching the knapsack problem with the dominating set on graphs. Each vertex is associated with a cost factor and a profit amount . We aim to choose some vertices within a fixed budget that give maximum profit so that we do not need to choose their 1-hop neighbors. We show that the Dominating Set Knapsack problem is strongly NPC even when restricted to bipartite graphs, but weakly NPC for star graphs. We present a pseudo-polynomial time algorithm for trees in time . We show that Dominating Set Knapsack is unlikely to be Fixed Parameter Tractable (FPT) by proving that it is W[2]-hard parameterized by the solution size. We developed FPT algorithms with running time and , where represents the of the given graph , is the solution size of the Vertex Cover Knapsack, is the capacity or size of the knapsack and . We obtained similar results for other variants Dominating Set Knapsack and Minimal Dominating Set Knapsack, where is the size of the dominating set.

Paper Structure

This paper contains 11 sections, 22 theorems, 13 equations, 7 figures.

Key Result

Theorem 12

Dominating Set Knapsack is strongly $\mathsf{NP}$-complete.

Figures (7)

  • Figure 1: The instance of a star graph $\mathcal{G}\xspace_1(\mathcal{V}\xspace_1,\mathcal{E}\xspace_1)$ with $\mathcal{V}\xspace_1=\{v_0,\ldots, v_5\}$. $w(v_i)=\alpha\xspace(v_i)=1~ \forall i= 1, \ldots 5$ and $w(v_0)=\alpha\xspace(v_0)=5$ and $s=d=4$.
  • Figure 2: The instance of a split graph $\mathcal{G}\xspace_2(\mathcal{V}\xspace_2,\mathcal{E}\xspace_2)$ with $\mathcal{V}\xspace_2=\{u_i:1\leqslant i\leqslant 4\}\cup \{v_j:1\leqslant j\leqslant 3\}$. $w(u_i)=4, \alpha\xspace(u_i)=0~ \forall i= 1, \ldots 4$ and $w(v_j)=\alpha\xspace(v_j)=1~ \forall j= 1, \ldots 3$ and $s=d=3$.
  • Figure 3: The instance of a bipartite graph $\mathcal{G}\xspace_3(\mathcal{V}\xspace_3,\mathcal{E}\xspace_3)$ with $\mathcal{V}\xspace_3=\{u_i:1\leqslant i\leqslant 4\}\cup \{v_j:1\leqslant j\leqslant 4\}$. $w(u_i)=4, \alpha\xspace(u_i)=0~ \forall~ i= 1, \ldots 4$ and $w(v_j)=\alpha\xspace(v_j)=1~ \forall~ j= 1, \ldots 3$ and $s=d=3$.
  • Figure 4: The instance of a regular graph $\mathcal{G}\xspace_4(\mathcal{V}\xspace_4,\mathcal{E}\xspace_4)$ with $\mathcal{V}\xspace_4=\{u_i:1\leqslant i\leqslant 5\}\cup \{v_j:1\leqslant j\leqslant 5\}$. $w(u_i)=w(v_j)=4, \alpha\xspace(u_i)=\alpha\xspace(v_j)=0~ \forall i= 1, \ldots 5, j=4, 5$ and $w(v_j)=\alpha\xspace(v_j)=1~ \forall j= 1, \ldots 3$ and $s=d=3$.
  • Figure 5: Sub-trees for the tree rooted at $u$ and the children of $u$
  • ...and 2 more figures

Theorems & Definitions (47)

  • Definition 1: Knapsack Problem
  • Definition 2: Dominating Set
  • Definition 3: Vertex Cover
  • Definition 4: Vertex Cover Knapsackdey2024knapsackwith
  • Definition 5: Upper Dominating Set
  • Definition 6: Exponential Time Hypothesis
  • Definition 7: Weighted Circuit Satisfiability
  • Definition 8: $\mathsf{W}$-hierarchy
  • Definition 9: Dominating Set Knapsack
  • Definition 10: $k$-Dominating Set Knapsack
  • ...and 37 more