In graph theory and computer science, a dense subgraph is a subgraph with many edges per vertex. This is formalized as follows: let G = (V, E) be an undirected graph and let S = (VS, ES) be a subgraph of G. Then the density of S is defined to be:
The density of the maximally dense subgraph of a graph is sometimes referred to as its subgraph density. A subgraph with maximal density can also be seen as a subgraph with maximal average degree in the graph.
The densest subgraph problem is that of finding a subgraph of maximum density. In 1984, Andrew V. Goldberg developed a polynomial time algorithm to find the maximum density subgraph using a max flow technique. This has been improved by Gallo, Grigoriadis and Tarjan in 1989[1] to run in O(nm log(n2/m)) time. A simple LP for finding the optimal solution was given by Charikar in 2000.[2]
Many of the exact algorithms for solving the densest subgraph problem are impractical on real-world data[3], which has led to the study of approximation algorithms for the densest subgraph problem. A simple approximation for finding the densest subgraph was given by Charikar in 2000, based on a peeling procedure which was first proposed by Asahiro, Iwama, Tamaki, and Tokuyama in 1996 as an approximation algorithm for the densest subgraph problem.[4] In this algorithm, the vertex with the lowest degree is repeatedly removed, creating an ordering of vertices , where is the th vertex in the graph to be removed. The subgraph returned by the algorithm is the graph induced by the set with the highest density. By using the dual of the LP for the exact algorithm he provided, Charikar proved that this procedure runs in linear time and yields a subgraph with at least 50% of the optimal density.[2] Though 50% is a tight bound, in practice, this greedy peeling procedure yields about 80% of the optimal density on real-world graphs.[3]
In 2020, Boob et al. gave an iterative peeling algorithm that aims to get closer to the optimal subgraph by repeated the peeling procedure multiple times.[3] Instead of removing the vertices based on their current degree, a load is assigned to each vertex based on data from previous iterations, and vertices are peeled based on their loads. In 2022, Chekuri, Quanrud, and Torres proved that this procedure converges to a approximation for the densest subgraph problem after iterations of the algorithm, where is the optimal density and is the maximum degree in the graph.[5] They also showed that a similar algorithm could be used to find densest hypergraphs.
Densest k subgraph
There are many variations on the densest subgraph problem. One of them is the densest k subgraph problem, where the objective is to find the maximum density subgraph on exactly k vertices. This problem generalizes the clique problem and is thus NP-hard in general graphs. There exists a polynomial algorithm approximating the densest k subgraph within a ratio of for every ,[6] while it does not admit an -approximation in polynomial time unless the exponential time hypothesis is false.[7] Under a weaker assumption that , no PTAS exists for the problem.[8]
The objective of the densest at most problem is to find the maximum density subgraph on at most vertices. Andersen and Chellapilla showed that if there exists an -approximation for this problem then that will lead to an -approximation for the densest subgraph problem.[11] Later, this was improved by Khuller and Saha who showed that an -approximation for densest at most subgraph implies a -approximation for the densest subgraph problem.[12]
Densest at least k subgraph
The densest at least problem is defined similarly to the densest at most subgraph problem. The problem is NP-complete,[12] but admits 2-approximation in polynomial time.[13] Moreover, there is some evidence that this approximation algorithm is essentially the best possible: assuming the small set expansion hypothesis (a computational complexity assumption closely related to the unique games conjecture), then it is NP-hard to approximate the problem to within factor for every constant .[14]
K-clique densest subgraph
Charalampos Tsourakakis introduced the -clique densest subgraph problem. This variation of the densest subgraph problem aims to maximize the average number of induced cliques , where is the set of -cliques induced by . Notice that the densest subgraph problem is obtained as a special case for . This generalization provides an empirically successful poly-time approach for extracting large near-cliques from large-scale real-world networks.
Locally top-k densest subgraph
Qin et al. introduced the problem of top-k locally densest subgraphs discovery in a graph, each of which achieves the highest density in its local region in the graph: it is neither contained in any supergraph with the same or larger density, nor it contains subgraphs with density being loosely connected with the rest of the local densest subgraph. Note that the densest subgraph problem is obtained as a special case for . The set of locally densest subgraphs in
a graph can be computed in polynomial time.
References
^Gallo, Giorgio; Grigoriadis, Michael D.; Tarjan, Robert E. (1989), "A fast parametric maximum flow algorithm and applications", SIAM Journal on Computing, 18 (1): 30–55, doi:10.1137/0218003, MR0978165
^ abCharikar, Moses (2000), "Greedy approximation algorithms for finding dense components in a graph", in Jansen, Klaus; Khuller, Samir (eds.), Approximation Algorithms for Combinatorial Optimization, Third International Workshop, APPROX 2000, Saarbrücken, Germany, September 5-8, 2000, Proceedings, Lecture Notes in Computer Science, vol. 1913, Springer, pp. 84–95, doi:10.1007/3-540-44436-X_10, ISBN978-3-540-67996-7
^Manurangsi, Pasin (2017), "Almost-polynomial ratio ETH-hardness of approximating densest k-subgraph", STOC'17—Proceedings of the 49th Annual ACM SIGACT Symposium on Theory of Computing, ACM, pp. 954–961, arXiv:1611.05991, doi:10.1145/3055399.3055412, ISBN9781450345286, S2CID1892186.
^Manurangsi, Pasin (2018), "Inapproximability of maximum biclique problems, minimum k-cut and densest at-least-k-subgraph from the small set expansion hypothesis", Algorithms, 11 (1): 10, arXiv:1705.03581, doi:10.3390/a11010010, MR3758880
Further reading
Andersen, R.; Chellapilla, K. (2009), "Finding dense subgraphs with size bounds", WAW: 25–36.