SearcharxivSearch

arXiv subjects

Chunyu Luo

Publications and source records attributed to Chunyu Luo.

4 recordsLinked to original sources

Control of Harmful Information Spreading on Adaptive Higher-Order Networks via Group Dissolution

Curbing harmful information contagion remains a critical challenge, motivating platform-level interventions such as group dissolution to sever transmission chains. However, in practice, users affected by dissolution often exhibit adaptive behavior, rewiring to form new groups. Yet, it remains unclear how these two mechanisms jointly shape information contagion and whether group dissolution remains effective in suppressing it. Here, we develop an adaptive higher-order contagion model that integrates platform-induced group dissolution with user adaptive rewiring, and derive a theoretical framework. Notably, we reveal an effective window for group dissolution, bounded by a critical infection rate. Above this threshold, dissolution backfires and amplifies information prevalence. Within this window, dissolution acts non-monotonically, initially exacerbating prevalence before eradicating contagion via a discontinuous transition beyond a critical dissolution rate. We further show that higher-order reinforcement expands this infection-rate window over which dissolution remains effective, whereas rewiring homophily substantially narrows it. Simulations on empirical hypergraph also validate these findings. Our work highlights the interplay between top-down platform interventions and bottom-up user adaptation, underscoring the need to account for adaptive responses when designing strategies to curb harmful information without unintended amplification.

physics.soc-ph

A Branch-and-Bound Approach for Maximum Low-Diameter Dense Subgraph Problems

A graph with $n$ vertices is an $f(\cdot)$-dense graph if it has at least $f(n)$ edges, $f(\cdot)$ being a well-defined function. The notion $f(\cdot)$-dense graph encompasses various clique models like $\gamma$-quasi cliques, $k$-defective cliques, and dense cliques, arising in cohesive subgraph extraction applications. However, the $f(\cdot)$-dense graph may be disconnected or weakly connected. To conquer this, we study the problem of finding the largest $f(\cdot)$-dense subgraph with a diameter of at most two in the paper. Specifically, we present a decomposition-based branch-and-bound algorithm to optimally solve this problem. The key feature of the algorithm is a decomposition framework that breaks the graph into $n$ smaller subgraphs, allowing independent searches in each subgraph. We also introduce decomposition strategies including degeneracy and two-hop degeneracy orderings, alongside a branch-and-bound algorithm with a novel sorting-based upper bound to solve each subproblem. Worst-case complexity for each component is provided. Empirical results on 139 real-world graphs under two $f(\cdot)$ functions show our algorithm outperforms the MIP solver and pure branch-and-bound, solving nearly twice as many instances optimally within one hour.

cs.DS

A Faster Branching Algorithm for the Maximum $k$-Defective Clique Problem

A $k$-defective clique of an undirected graph $G$ is a subset of its vertices that induces a nearly complete graph with a maximum of $k$ missing edges. The maximum $k$-defective clique problem, which asks for the largest $k$-defective clique from the given graph, is important in many applications, such as social and biological network analysis. In the paper, we propose a new branching algorithm that takes advantage of the structural properties of the $k$-defective clique and uses the efficient maximum clique algorithm as a subroutine. As a result, the algorithm has a better asymptotic running time than the existing ones. We also investigate upper-bounding techniques and propose a new upper bound utilizing the \textit{conflict relationship} between vertex pairs. Because conflict relationship is common in many graph problems, we believe that this technique can be potentially generalized. Finally, experiments show that our algorithm outperforms state-of-the-art solvers on a wide range of open benchmarks.

cs.DS

Fast Maximum $k$-Plex Algorithms Parameterized by Small Degeneracy Gaps

Given a graph, a $k$-plex is a set of vertices in which each vertex is not adjacent to at most $k-1$ other vertices in the set. The maximum $k$-plex problem, which asks for the largest $k$-plex from the given graph, is an important but computationally challenging problem in applications such as graph mining and community detection. So far, there are many practical algorithms, but without providing theoretical explanations on their efficiency. We define a novel parameter of the input instance, $g_k(G)$, the gap between the degeneracy bound and the size of the maximum $k$-plex in the given graph, and present an exact algorithm parameterized by this $g_k(G)$, which has a worst-case running time polynomial in the size of the input graph and exponential in $g_k(G)$. In real-world inputs, $g_k(G)$ is very small, usually bounded by $O(\log{(|V|)})$, indicating that the algorithm runs in polynomial time. We further extend our discussion to an even smaller parameter $cg_k(G)$, the gap between the community-degeneracy bound and the size of the maximum $k$-plex, and show that without much modification, our algorithm can also be parameterized by $cg_k(G)$. To verify the empirical performance of these algorithms, we carry out extensive experiments to show that these algorithms are competitive with the state-of-the-art algorithms. In particular, for large $k$ values such as $15$ and $20$, our algorithms dominate the existing algorithms. Finally, empirical analysis is performed to illustrate the effectiveness of the parameters and other key components in the implementation.

cs.DS