中文
相关论文

相关论文: An Exact 2.9416^n Algorithm for the Three Domatic …

200 篇论文

A set $D \subseteq V$ is a dominating set of a graph $G$ if every vertex in $V - D$ is adjacent to at least one vertex in $D$. A dominating set $D$ is a paired-dominating set if the subgraph of $G$ induced by $D$ contains a perfect…

数据结构与算法 · 计算机科学 2025-02-25 Ta-Yu Mu , Ching-Chi Lin

A set $D \subseteq V$ for the graph $G=(V, E)$ is called a dominating set if any vertex $v\in V\setminus D$ has at least one neighbor in $D$. Fomin et al.[9] gave an algorithm for enumerating all minimal dominating sets with $n$ vertices in…

离散数学 · 计算机科学 2018-06-08 M. Alambardar Meybodi , M. R. Hooshmandasl , P. Sharifani , A. Shakiba

3-list colouring is an NP-complete decision problem. It is hard even on planar bipartite graphs. We give a polynomial-time algorithm for solving 3-list colouring on permutation graphs.

离散数学 · 计算机科学 2015-03-19 Jessica Enright , Lorna Stewart

Most graphs in real life keep changing with time. These changes can be in the form of insertion or deletion of edges or vertices. Such rapidly changing graphs motivate us to study dynamic graph algorithms. However, three important graph…

数据结构与算法 · 计算机科学 2018-08-07 Manoj Gupta , Shahbaz Khan

We study the Dominating set problem and Independent Set Problem for dynamic graphs in the vertex-arrival model. We say that a dynamic algorithm for one of these problems is $k$-stable when it makes at most $k$ changes to its output…

数据结构与算法 · 计算机科学 2025-11-07 Mark de Berg , Arpan Sadhukhan , Frits Spieksma

The paper presents an O^*(1.2312^n)-time and polynomial-space algorithm for the traveling salesman problem in an n-vertex graph with maximum degree 3. This improves the previous time bounds of O^*(1.251^n) by Iwama and Nakashima and…

数据结构与算法 · 计算机科学 2017-08-08 Mingyu Xiao , Hiroshi Nagamochi

A vertex set $D$ in a finite undirected graph $G$ is an {\em efficient dominating set} (\emph{e.d.s.}\ for short) of $G$ if every vertex of $G$ is dominated by exactly one vertex of $D$. The \emph{Efficient Domination} (ED) problem, which…

离散数学 · 计算机科学 2021-12-17 Andreas Brandstädt

In a graph $G$, a vertex subset $S\subseteq V(G)$ is said to be a dominating set of $G$ if every vertex not in $S$ is adjacent to a vertex in $S$. A dominating set $S$ of a graph $G$ is called a paired-dominating set if the induced subgraph…

数据结构与算法 · 计算机科学 2014-01-30 Ching-Chi Lin , Hai-Lun Tu

A set of vertices in a graph is a dominating set if every vertex outside the set has a neighbor in the set. A dominating set is connected if the subgraph induced by its vertices is connected. The connected domatic partition problem asks for…

数据结构与算法 · 计算机科学 2013-07-09 Alina Ene , Nitish Korula , Ali Vakilian

Dealing with the NP-complete Dominating Set problem on undirected graphs, we demonstrate the power of data reduction by preprocessing from a theoretical as well as a practical side. In particular, we prove that Dominating Set restricted to…

数据结构与算法 · 计算机科学 2007-05-23 Jochen Alber , Michael R. Fellows , Rolf Niedermeier

The field of dynamic graph algorithms aims at achieving a thorough understanding of real-world networks whose topology evolves with time. Traditionally, the focus has been on the classic sequential, centralized setting where the main…

数据结构与算法 · 计算机科学 2021-09-23 Shiri Antaki , Quanquan C. Liu , Shay Solomon

Node counting on a graph is subject to some fundamental theoretical limitations, yet a solution to such problems is necessary in many applications of graph theory to real-world systems, such as collective robotics and distributed sensor…

分布式、并行与集群计算 · 计算机科学 2020-05-29 Arindam Saha , James A. R. Marshall , Andreagiovanni Reina

In this paper, we develop deterministic fully dynamic algorithms for computing approximate distances in a graph with worst-case update time guarantees. In particular, we obtain improved dynamic algorithms that, given an unweighted and…

数据结构与算法 · 计算机科学 2022-09-09 Jan van den Brand , Sebastian Forster , Yasamin Nazari

We design a Quasi-Polynomial time deterministic approximation algorithm for computing the integral of a multi-dimensional separable function, supported by some underlying hyper-graph structure, appropriately defined. Equivalently, our…

数据结构与算法 · 计算机科学 2024-02-14 David Gamarnik , Devin Smedira

This paper presents a distributed algorithm for finding near optimal dominating sets on grids. The basis for this algorithm is an existing centralized algorithm that constructs dominating sets on grids. The size of the dominating set…

数据结构与算法 · 计算机科学 2013-03-15 Elaheh Fata , Stephen L. Smith , Shreyas Sundaram

We present an algorithm for finding a perfect matching in a $3$-edge-connected cubic graph that intersects every $3$-edge cut in exactly one edge. Specifically, we propose an algorithm with a time complexity of $O(n \log^4 n)$, which…

数据结构与算法 · 计算机科学 2025-07-03 Babak Ghanbari , Robert Šámal

We study stochastic graph optimization problems in a novel distributed setting. As in the standard centralized setting, a random subgraph $G^*$ of a known base graph $G$ is realized by including each edge $e$ independently with a known…

数据结构与算法 · 计算机科学 2026-05-21 Keren Censor-Hillel , Aditi Dudeja , George Giakkoupis

One of the driving problems in the CSP area is the Dichotomy Conjecture, formulated in 1993 by Feder and Vardi [STOC'93], stating that for any fixed relational structure G the Constraint Satisfaction Problem CSP(G) is either NP--complete or…

数据结构与算法 · 计算机科学 2010-11-13 Marek Cygan , Marcin Pilipczuk , Michal Pilipczuk , Jakub Onufry Wojtaszczyk

We design fast dynamic algorithms for proper vertex and edge colorings in a graph undergoing edge insertions and deletions. In the static setting, there are simple linear time algorithms for $(\Delta+1)$- vertex coloring and…

数据结构与算法 · 计算机科学 2017-11-15 Sayan Bhattacharya , Deeparnab Chakrabarty , Monika Henzinger , Danupon Nanongkai

We show how to find a Hamiltonian cycle in a graph of degree at most three with n vertices, in time O(2^{n/3}) ~= 1.260^n and linear space. Our algorithm can find the minimum weight Hamiltonian cycle (traveling salesman problem), in the…

数据结构与算法 · 计算机科学 2007-06-14 David Eppstein