中文
相关论文

相关论文: A Brief Note on Single Source Fault Tolerant Reach…

200 篇论文

In this paper we study the time complexity of the single-source reachability problem and the single-source shortest path problem for directed unweighted graphs in the Broadcast CONGEST model. We focus on the case where the diameter $D$ of…

数据结构与算法 · 计算机科学 2019-10-15 Shiri Chechik , Doron Mukhtar

Reachability is the problem of deciding whether there is a path from one vertex to the other in the graph. Standard graph traversal algorithms such as DFS and BFS take linear time to decide reachability however their space complexity is…

计算复杂性 · 计算机科学 2019-02-06 Rahul Jain , Raghunath Tewari

For a given graph $G$, a depth-first search (DFS) tree $T$ of $G$ is an $r$-rooted spanning tree such that every edge of $G$ is either an edge of $T$ or is between a \textit{descendant} and an \textit{ancestor} in $T$. A graph $G$ together…

数据结构与算法 · 计算机科学 2023-07-21 Emmanuel Sam , Benjamin Bergougnoux , Petr A. Golovach , Nello Blaser

Given a graph $Y$ on $n$ vertices and a desired level of fault-tolerance $k$, an objective in fault-tolerant system design is to construct a supergraph $X$ on $n + k$ vertices such that the removal of any $k$ nodes from $X$ leaves a graph…

离散数学 · 计算机科学 2017-09-26 Ashwin Ganesan

A set of vertices $S\subseteq V(G)$ is a basis or resolving set of a graph $G$ if for each $x,y\in V(G)$ there is a vertex $u\in S$ such that $d(x,u)\neq d(y,u)$. A basis $S$ is a fault-tolerant basis if $S\setminus \{x\}$ is a basis for…

组合数学 · 数学 2021-12-22 S. Prabhu , V. Manimozhi , M. Arulperumjothi , Sandi Klavžar

For a connected graph $\Gamma=(V,E)$, a subset $R$ of ordered vertices in $V$ is said to be a resolving set in $\Gamma$, if the vector of distances to the vertices in $R$ is unique for each $u^{i}\in V(\Gamma)$. The metric dimension of…

组合数学 · 数学 2021-04-20 Sunny Kumar Sharma , Vijay Kumar Bhat

Given an undirected graph G = (V, E) and an integer k, the s-Club asks if Gcontains a vertex subset S of at least k vertices such that G[S] has diameter at most s. Recently, Vertex r-Triangle s-Club, and Edge r-Triangle s-Club that…

数据结构与算法 · 计算机科学 2025-09-22 Ashwin Jacob , Diptapriyo Majumdar , Raghav Sakhuja

Problems of the following kind have been the focus of much recent research in the realm of parameterized complexity: Given an input graph (digraph) on $n$ vertices and a positive integer parameter $k$, find if there exist $k$ edges (arcs)…

数据结构与算法 · 计算机科学 2014-09-18 Prachi Goyal , Pranabendu Misra , Fahad Panolan , Geevarghese Philip , Saket Saurabh

The \emph{$k$-restricted edge-connectivity} of a graph $G$, denoted by $\lambda_k(G)$, is defined as the minimum size of an edge set whose removal leaves exactly two connected components each containing at least $k$ vertices. This graph…

数据结构与算法 · 计算机科学 2016-09-20 Luis Pedro Montejano , Ignasi Sau

Let $K^r_n$ be the complete $r$-uniform hypergraph on $n$ vertices, that is, the hypergraph whose vertex set is $[n]:=\{1,2,...,n\}$ and whose edge set is $\binom{[n]}{r}$. We form $G^r(n,p)$ by retaining each edge of $K^r_n$ independently…

组合数学 · 数学 2026-01-14 Sahar Diskin , Ilay Hoshen , Dániel Korándi , Benny Sudakov , Maksim Zhukovskii

Random $s$-intersection graphs have recently received much interest in a wide range of application areas. Broadly speaking, a random $s$-intersection graph is constructed by first assigning each vertex a set of items in some random manner,…

组合数学 · 数学 2014-11-19 Jun Zhao , Osman Yağan , Virgil Gligor

The 2-Vertex-Connected Spanning Subgraph problem (2VCSS) is among the most basic NP-hard (Survivable) Network Design problems: we are given an (unweighted) undirected graph $G$. Our goal is to find a spanning subgraph $S$ of $G$ with the…

数据结构与算法 · 计算机科学 2025-07-02 Miguel Bosch-Calvo , Fabrizio Grandoni , Afrouz Jabal Ameli

One of the most important and well-studied settings for network design is edge-connectivity requirements. This encompasses uniform demands such as the Minimum $k$-Edge-Connected Spanning Subgraph problem as well as nonuniform demands such…

数据结构与算法 · 计算机科学 2023-10-04 Michael Dinitz , Ama Koranteng , Guy Kortsarz , Zeev Nutov

We consider the parameterized complexity of the problem of tracking shortest s-t paths in graphs, motivated by applications in security and wireless networks. Given an undirected and unweighted graph with a source s and a destination t,…

数据结构与算法 · 计算机科学 2020-08-19 Aritra Banik , Pratibha Choudhary , Venkatesh Raman , Saket Saurabh

Recent work has established that, for every positive integer $k$, every $n$-node graph has a $(2k-1)$-spanner on $O(f^{1-1/k} n^{1+1/k})$ edges that is resilient to $f$ edge or vertex faults. For vertex faults, this bound is tight. However,…

数据结构与算法 · 计算机科学 2021-02-24 Greg Bodwin , Michael Dinitz , Caleb Robelle

Let $H$ be a fixed graph. The $H$-Transversal problem, given a graph $G$, asks to remove the smallest number of vertices from $G$ so that $G$ does not contain $H$ as a subgraph. While a simple $|V(H)|$-approximation algorithm exists and is…

计算复杂性 · 计算机科学 2021-12-06 Euiwoong Lee , Pengxiang Wang

Given a graph $G=(V,E)$ with two distinguished vertices $s,t\in V$ and an integer parameter $L>0$, an {\em $L$-bounded cut} is a subset $F$ of edges (vertices) such that the every path between $s$ and $t$ in $G\setminus F$ has length more…

数据结构与算法 · 计算机科学 2017-09-11 Petr Kolman

Each vertex of an arbitrary simple graph on $n$ vertices chooses $k$ random incident edges. What is the expected number of edges in the original graph that connect different connected components of the sampled subgraph? We prove that the…

离散数学 · 计算机科学 2019-09-26 Jacob Holm , Valerie King , Mikkel Thorup , Or Zamir , Uri Zwick

The Spanning Tree Congestion (STC) problem is the following NP-hard problem: given a graph $G$, construct a spanning tree $T$ of $G$ minimizing its maximum edge congestion where the congestion of an edge $e\in T$ is the number of edges $uv$…

数据结构与算法 · 计算机科学 2026-05-05 Petr Kolman

(see paper for full abstract) Given a vertex-weighted directed graph $G=(V,E)$ and a set $T=\{t_1, t_2, \ldots t_k\}$ of $k$ terminals, the objective of the SCSS problem is to find a vertex set $H\subseteq V$ of minimum weight such that…

数据结构与算法 · 计算机科学 2019-12-02 Rajesh Chitnis , Andreas Emil Feldmann , MohammadTaghi Hajiaghayi , Dániel Marx