中文
相关论文

相关论文: Spanning trees short or small

200 篇论文

The degree-d spanning tree problem asks for a minimum-weight spanning tree in which the degree of each vertex is at most d. When d=2 the problem is TSP, and in this case, the well-known Christofides algorithm provides a 1.5-approximation…

数据结构与算法 · 计算机科学 2015-06-02 Samir Khuller , Balaji Raghavachari , Neal E. Young

In this lecture we will consider the minimum weight spanning tree (MST) problem, i.e., one of the simplest and most vital combinatorial optimization problems. We will discuss a particular greedy algorithm that allows to compute a MST for…

数据结构与算法 · 计算机科学 2012-09-21 O. Melchert

Computing a Euclidean minimum spanning tree of a set of points is a seminal problem in computational geometry and geometric graph theory. We combine it with another classical problem in graph drawing, namely computing a monotone geometric…

计算几何 · 计算机科学 2024-11-26 Emilio Di Giacomo , Walter Didimo , Eleni Katsanou , Lena Schlipf , Antonios Symvonis , Alexander Wolff

Network interdiction problems are a natural way to study the sensitivity of a network optimization problem with respect to the removal of a limited set of edges or vertices. One of the oldest and best-studied interdiction problems is…

数据结构与算法 · 计算机科学 2015-08-07 Rico Zenklusen

In the $k$-dispersion problem, we need to select $k$ nodes of a given graph so as to maximize the minimum distance between any two chosen nodes. This can be seen as a generalization of the independent set problem, where the goal is to…

数据结构与算法 · 计算机科学 2017-06-29 Paweł Gawrychowski , Nadav Krasnopolsky , Shay Mozes , Oren Weimann

Reachability and shortest path problems are NL-complete for general graphs. They are known to be in L for graphs of tree-width 2 [JT07]. However, for graphs of tree-width larger than 2, no bound better than NL is known. In this paper, we…

计算复杂性 · 计算机科学 2010-02-03 Bireswar Das , Samir Datta , Prajakta Nimbhorkar

We introduce a graph partitioning problem motivated by computational topology and propose two algorithms that produce approximate solutions. Specifically, given a weighted, undirected graph $G$ and a positive integer $k$, we desire to find…

组合数学 · 数学 2019-07-04 Abdel-Rahman Madkour , Phillip Nadolny , Matthew Wright

The geometric bottleneck Steiner network problem on a set of vertices $X$ embedded in a normed plane requires one to construct a graph $G$ spanning $X$ and a variable set of $k\geq 0$ additional points, such that the length of the longest…

组合数学 · 数学 2013-01-22 M. Brazil , C. J. Ras , D. A. Thomas

In the spanning tree congestion problem, given a connected graph $G$, the objective is to compute a spanning tree $T$ in $G$ that minimizes its maximum edge congestion, where the congestion of an edge $e$ of $T$ is the number of edges in…

计算复杂性 · 计算机科学 2023-07-12 Huong Luu , Marek Chrobak

Color-constrained subgraph problems are those where we are given an edge-colored (directed or undirected) graph and the task is to find a specific type of subgraph, like a spanning tree, an arborescence, a single-source shortest path tree,…

数据结构与算法 · 计算机科学 2024-07-24 P. S. Ardra , Jasine Babu , Kritika Kashyap , R. Krithika , Sreejith K. Pallathumadam , Deepak Rajendraprasad

We study the generalized minimum Manhattan network (GMMN) problem: given a set $P$ of pairs of two points in the Euclidean plane $\mathbb{R}^2$, we are required to find a minimum-length geometric network which consists of axis-aligned…

数据结构与算法 · 计算机科学 2020-04-28 Yuya Masumura , Taihei Oki , Yutaro Yamaguchi

For a set of red and blue points in the plane, a minimum bichromatic spanning tree (MinBST) is a shortest spanning tree of the points such that every edge has a red and a blue endpoint. A MinBST can be computed in $O(n\log n)$ time where…

计算几何 · 计算机科学 2024-09-19 Hugo A. Akitaya , Ahmad Biniaz , Erik D. Demaine , Linda Kleist , Frederick Stock , Csaba D. Tóth

We introduce a new structure for a set of points in the plane and an angle $\alpha$, which is similar in flavor to a bounded-degree MST. We name this structure $\alpha$-MST. Let $P$ be a set of points in the plane and let $0 < \alpha \le…

计算几何 · 计算机科学 2014-02-26 Rom Aschner , Matthew J. Katz

We consider the well-studied problem of finding a spanning tree with minimum average distance between vertex pairs (called a MAD tree). This is a classic network design problem which is known to be NP-hard. While approximation algorithms…

数据结构与算法 · 计算机科学 2026-04-01 Tom-Lukas Breitkopf , Vincent Froese , Anton Herrmann , André Nichterlein , Camille Richer

It is required to find an optimal order of constructing the edges of a network so as to minimize the sum of the weighted connection times of relevant pairs of vertices. Construction can be performed anytime anywhere in the network, with a…

数据结构与算法 · 计算机科学 2021-04-20 Igor Averbakh

We study the problem of finding a minimum weight connected subgraph spanning at least $k$ vertices on planar, node-weighted graphs. We give a $(4+\eps)$-approximation algorithm for this problem. We achieve this by utilizing the recent LMP…

数据结构与算法 · 计算机科学 2018-05-09 Jarosław Byrka , Mateusz Lewandowski , Joachim Spoerhase

Minimum spanning trees (MSTs) provide a convenient representation of datasets in numerous pattern recognition activities. Moreover, they are relatively fast to compute. In this paper, we quantify the extent to which they are meaningful in…

机器学习 · 统计学 2025-10-16 Marek Gagolewski , Anna Cena , Maciej Bartoszuk , Łukasz Brzozowski

We study the {\em min-cost chain-constrained spanning-tree} (abbreviated \mcst) problem: find a min-cost spanning tree in a graph subject to degree constraints on a nested family of node sets. We devise the {\em first} polytime algorithm…

数据结构与算法 · 计算机科学 2016-05-12 Andre Linhares , Chaitanya Swamy

We address here spanning tree problems on a graph with binary edge weights. For a general weighted graph the minimum spanning tree is solved in super-linear running time, even when the edges of the graph are pre-sorted. A related problem,…

数据结构与算法 · 计算机科学 2024-01-17 Dorit S. Hochbaum

This paper considers the \textit{minimum spanning tree (MST)} problem in the Congested Clique model and presents an algorithm that runs in $O(\log \log \log n)$ rounds, with high probability. Prior to this, the fastest MST algorithm in this…

分布式、并行与集群计算 · 计算机科学 2014-12-09 Sriram V. Pemmaraju , Vivek B. Sardeshmukh