中文
相关论文

相关论文: Computing and Listing Avoidable Vertices and Paths

200 篇论文

In this paper, we revisit the classic approximate All-Pairs Shortest Paths (APSP) problem in undirected graphs. For unweighted graphs, we provide an algorithm for $2$-approximate APSP in $\tilde O(n^{2.5-r}+n^{\omega(r)})$ time, for any…

数据结构与算法 · 计算机科学 2023-10-31 Michal Dory , Sebastian Forster , Yael Kirkpatrick , Yasamin Nazari , Virginia Vassilevska Williams , Tijn de Vos

Various applications of graphs, in particular applications related to finding shortest paths, naturally get inputs with real weights on the edges. However, for algorithmic or visualization reasons, inputs with integer weights would often be…

计算复杂性 · 计算机科学 2019-05-22 Herman Haverkort , David Kübel , Elmar Langetepe

In this paper we study local routing strategies on geometric graphs. Such strategies use geometric properties of the graph like the coordinates of the current and target nodes to route. Specifically, we study routing strategies in the…

计算几何 · 计算机科学 2021-02-10 Prosenjit Bose , Matias Korman , André van Renssen , Sander Verdonschot

The minimum degree algorithm is one of the most widely-used heuristics for reducing the cost of solving large sparse systems of linear equations. It has been studied for nearly half a century and has a rich history of bridging techniques…

数据结构与算法 · 计算机科学 2023-04-11 Robert Cummings , Matthew Fahrbach , Animesh Fatehpuria

Matrix $M$ is {\em $k$-concise} if the finite entries of each column of $M$ consist of $k$ or less intervals of identical numbers. We give an $O(n+m)$-time algorithm to compute the row minima of any $O(1)$-concise $n\times m$ matrix. Our…

数据结构与算法 · 计算机科学 2014-03-04 Cheng-Wei Lee , Hsueh-I Lu

The concept of avoidable paths in graphs was introduced by Beisegel, Chudnovsky, Gurvich, Milani\v{c}, and Servatius in 2019 as a common generalization of avoidable vertices and simplicial paths. In 2020, Bonamy, Defrain, Hatzel, and…

组合数学 · 数学 2025-04-18 Vladimir Gurvich , Matjaž Krnc , Martin Milanič , Mikhail Vyalyi

We are given a graph $G$ with $n$ vertices, where a random subset of $k$ vertices has been made into a clique, and the remaining edges are chosen independently with probability $\tfrac12$. This random graph model is denoted…

组合数学 · 数学 2010-10-15 Yael Dekel , Ori Gurel-Gurevich , Yuval Peres

A graph is $k$-degenerate if any induced subgraph has a vertex of degree at most $k$. In this paper we prove new algorithms for cliques and similar structures for these graphs. We design linear time Fixed-Parameter Tractable algorithms for…

离散数学 · 计算机科学 2017-09-21 George Manoussakis

We investigate the problem of computing the shortest secure path in a Voronoi diagram. Here, a path is secure if it is a sequence of touching Voronoi cells, where each Voronoi cell in the path has a uniform cost of being secured.…

计算几何 · 计算机科学 2021-03-22 Sariel Har-Peled , Rajgopal Varadharajan

A \emph{disk graph} is the intersection graph of (closed) disks in the plane. We consider the classic problem of finding a maximum clique in a disk graph. For general disk graphs, the complexity of this problem is still open, but for unit…

In this note we present an algorithm that lists all $4$-cycles in a graph in time $\tilde{O}(\min(n^2,m^{4/3})+t)$ where $t$ is their number. Notably, this separates $4$-cycle listing from triangle-listing, since the latter has a…

数据结构与算法 · 计算机科学 2022-11-21 Amir Abboud , Seri Khoury , Oree Leibowitz , Ron Safier

A geometric graph is a graph whose vertices are points in general position in the plane and its edges are straight line segments joining these points. In this paper we give an $O(n^2 \log n)$ algorithm to compute the number of pairs of…

计算几何 · 计算机科学 2020-09-04 Frank Duque , Ruy Fabila-Monroy , César Hernández-Vélez , Carlos Hidalgo-Toscano

How efficiently can we find an unknown graph using distance queries between its vertices? We assume that the unknown graph is connected, unweighted, and has bounded degree. The goal is to find every edge in the graph. This problem admits a…

数据结构与算法 · 计算机科学 2021-12-14 Claire Mathieu , Hang Zhou

Given a graph $G$ and two vertices $s$ and $t$ in it, {\em graph reachability} is the problem of checking whether there exists a path from $s$ to $t$ in $G$. We show that reachability in directed layered planar graphs can be decided in…

数据结构与算法 · 计算机科学 2015-01-26 Diptarka Chakraborty , Raghunath Tewari

Fine-grained reductions have established equivalences between many core problems with $\tilde{O}(n^3)$-time algorithms on $n$-node weighted graphs, such as Shortest Cycle, All-Pairs Shortest Paths (APSP), Radius, Replacement Paths, Second…

数据结构与算法 · 计算机科学 2020-05-07 Andrea Lincoln , Virginia Vassilevska Williams , Ryan Williams

Consider the following "local" cut-detection problem in a directed graph: We are given a seed vertex $x$ and need to remove at most $k$ edges so that at most $\nu$ edges can be reached from $x$ (a "local" cut) or output $\bot$ to indicate…

数据结构与算法 · 计算机科学 2019-11-01 Sebastian Forster , Danupon Nanongkai , Thatchaphol Saranurak , Liu Yang , Sorrachai Yingchareonthawornchai

Given an $n$-vertex $m$-edge graph $G$ with non negative edge-weights, the girth of $G$ is the weight of a shortest cycle in $G$. For any graph $G$ with polynomially bounded integer weights, we present a deterministic algorithm that…

数据结构与算法 · 计算机科学 2018-10-25 Guillaume Ducoffe

We present an algorithm to find an {\it Euclidean Shortest Path} from a source vertex $s$ to a sink vertex $t$ in the presence of obstacles in $\Re^2$. Our algorithm takes $O(T+m(\lg{m})(\lg{n}))$ time and $O(n)$ space. Here, $O(T)$ is the…

计算几何 · 计算机科学 2010-12-01 Rajasekhar Inkulu , Sanjiv Kapoor , S. N. Maheshwari

For vertices $u$ and $v$ of an $n$-vertex graph $G$, a $uv$-trail of $G$ is an induced $uv$-path of $G$ that is not a shortest $uv$-path of $G$. Berger, Seymour, and Spirkl [Discrete Mathematics 2021] gave the previously only known…

数据结构与算法 · 计算机科学 2024-10-02 Yung-Chung Chiu , Hsueh-I Lu

In this paper we present a new approach to visualize directed graphs and their hierarchies that completely departs from the classical four-phase framework of Sugiyama and computes readable hierarchical visualizations that contain the…

数据结构与算法 · 计算机科学 2018-08-31 Giacomo Ortali , Ioannis G. Tollis