中文
相关论文

相关论文: Optimal Bounds for the k-Disjoint Paths Problem

200 篇论文

The Graph Minors Structure Theorem of Robertson and Seymour asserts that, for every graph $H,$ every $H$-minor-free graph can be obtained by clique-sums of ``almost embeddable'' graphs. Here a graph is ``almost embeddable'' if it can be…

组合数学 · 数学 2024-02-06 Dimitrios M. Thilikos , Sebastian Wiederrecht

Motivated by the increasing need to understand the algorithmic foundations of distributed large-scale graph computations, we study a number of fundamental graph problems in a message-passing model for distributed computing where $k \geq 2$…

分布式、并行与集群计算 · 计算机科学 2016-07-07 Gopal Pandurangan , Peter Robinson , Michele Scquizzato

Let $\Lambda(T)$ denote the set of leaves in a tree $T$. One natural problem is to look for a spanning tree $T$ of a given graph $G$ such that $\Lambda(T)$ is as large as possible. This problem is called maximum leaf number, and it is a…

组合数学 · 数学 2026-02-19 Peter Bradshaw , Tomáš Masařík , Jana Novotná , Ladislav Stacho

This paper revisits the classical Edge Disjoint Paths (EDP) problem, where one is given an undirected graph $G$ and a set of terminal pairs $P$ and asks whether $G$ contains a set of pairwise edge-disjoint paths connecting every terminal…

数据结构与算法 · 计算机科学 2018-08-13 Robert Ganian , Sebastian Ordyniak

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

In the $k$-cut problem, we want to find the lowest-weight set of edges whose deletion breaks a given (multi)graph into $k$ connected components. Algorithms of Karger \& Stein can solve this in roughly $O(n^{2k})$ time. On the other hand,…

数据结构与算法 · 计算机科学 2023-10-13 Anupam Gupta , David G. Harris , Euiwoong Lee , Jason Li

We consider two decomposition problems in directed graphs. We say that a digraph is $k$-bounded for some $k \in \mathbb{Z}_{\geq 1}$ if each of its connected components contains at most $k$ arcs. For the first problem, a directed linear…

组合数学 · 数学 2024-09-06 Florian Hörsch , Lucas Picasarri-Arrieta

Let s1, t1,. . . sk, tk be vertices in a graph G embedded on a surface \sigma of genus g. A vertex v of G is "redundant" if there exist k vertex disjoint paths linking si and ti (1 \lequal i \lequal k) in G if and only if such paths also…

组合数学 · 数学 2013-10-01 Frédéric Mazoit

This paper presents a study on two data structures that have been used to model several problems in computer science: and/or graphs and x-y graphs. An and/or graph is an acyclic digraph containing a source, such that every vertex v has a…

计算复杂性 · 计算机科学 2012-03-16 Maise Dantas da Silva , Fábio Protti , Uéverton dos Santos Souza

We study the classical Node-Disjoint Paths (NDP) problem: given an undirected $n$-vertex graph G, together with a set {(s_1,t_1),...,(s_k,t_k)} of pairs of its vertices, called source-destination, or demand pairs, find a maximum-cardinality…

数据结构与算法 · 计算机科学 2018-05-28 Julia Chuzhoy , David H. K. Kim , Rachit Nimavat

For a graph $G$ with at least two vertices, the maximum local edge-connectivity of $G$ is the maximum number of edge-disjoint $(u,v)$-paths over all distinct pairs of vertices $(u,v)$ in $G$. Stiebitz and Toft (2018) proved a Brooks-type…

组合数学 · 数学 2026-03-19 Sam Bastida , Nick Brettell

We study the complexity of fundamental distributed graph problems in the recently popular setting where information about the input graph is available to the nodes before the start of the computation. We focus on the most common such…

分布式、并行与集群计算 · 计算机科学 2024-05-03 Alkida Balliu , Thomas Boudier , Sebastian Brandt , Dennis Olivetti

Let F be a finite set of graphs. In the F-Deletion problem, we are given an n-vertex graph G and an integer k as input, and asked whether at most k vertices can be deleted from G such that the resulting graph does not contain a graph from F…

数据结构与算法 · 计算机科学 2020-11-03 Fedor Fomin , Daniel Lokshtanov , Neeldhara Misra , Saket Saurabh

For every positive integer $k$, we define the $k$-treedepth as the largest graph parameter $\mathrm{td}_k$ satisfying (i) $\mathrm{td}_k(\emptyset)=0$; (ii) $\mathrm{td}_k(G) \leq 1+ \mathrm{td}_k(G-u)$ for every graph $G$ and every vertex…

组合数学 · 数学 2025-01-22 Clément Rambaud

A solution of the $k$ shortest paths problem may output paths that are identical up to a single edge. On the other hand, a solution of the $k$ independent shortest paths problem consists of paths that share neither an edge nor an…

数据结构与算法 · 计算机科学 2022-11-08 Yefim Dinitz , Shlomi Dolev , Manish Kumar , Baruch Schieber

A directed graph (digraph) $ D $ is $ k $-linked if $ |D| \geq 2k $, and for any $ 2k $ distinct vertices $ x_1, \ldots, x_k, y_1, \ldots, y_k $ of $ D $, there exist vertex-disjoint paths $ P_1, \ldots, P_k $ such that $ P_i $ is a path…

组合数学 · 数学 2025-03-14 Jia Zhou , Jørgen Bang-Jensen , Jin Yan

Finding a maximum independent set is a fundamental NP-hard problem that is used in many real-world applications. Given an unweighted graph, this problem asks for a maximum cardinality set of pairwise non-adjacent vertices. Some of the most…

数据结构与算法 · 计算机科学 2021-03-30 Demian Hespe , Sebastian Lamm , Christian Schorr

We call a finite undirected graph minimally k-matchable if it has at least k distinct perfect matchings but deleting any edge results in a graph which has not. An odd subdivision of some graph G is any graph obtained by replacing every edge…

组合数学 · 数学 2016-08-05 Gasper Fijavz , Matthias Kriesell

Vertex deletion problems for graphs are studied intensely in classical and parameterized complexity theory. They ask whether we can delete at most k vertices from an input graph such that the resulting graph has a certain property.…

计算机科学中的逻辑 · 计算机科学 2024-06-27 Max Bannach , Florian Chudigiewitsch , Till Tantau

We prove a precise min-max theorem for the following problem. Let $G$ be an Eulerian graph with a specified set of edges $S \subseteq E(G)$, and let $b$ be a vertex of $G$. Then what is the maximum integer $k$ so that the edge-set of $G$…

组合数学 · 数学 2025-06-10 Rose McCarty
‹ 上一页 1 8 9 10 下一页 ›