中文
相关论文

相关论文: Fully Dynamic $(\Delta+1)$-Coloring in Constant Up…

200 篇论文

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 present a simple randomized algorithm that can efficiently maintain a $(\Delta+1)$ coloring as the graph undergoes edge insertion and deletion updates, where $\Delta$ denotes an upper bound on the maximum degree. A key advantage is the…

数据结构与算法 · 计算机科学 2025-12-11 Mohsen Ghaffari , Jaehyun Koo

We consider the problem of maintaining a proper $(\Delta + 1)$-vertex coloring in a graph on $n$-vertices and maximum degree $\Delta$ undergoing edge insertions and deletions. We give a randomized algorithm with amortized update time…

数据结构与算法 · 计算机科学 2025-07-08 Maxime Flin , Magnús M. Halldórsson

Over the years, there has been extensive work on fully dynamic algorithms for classic graph problems that admit greedy solutions. Examples include $(\Delta+1)$ vertex coloring, maximal independent set, and maximal matching. For all three…

数据结构与算法 · 计算机科学 2025-01-22 Soheil Behnezhad , Rajmohan Rajaraman , Omer Wasim

The problem of edge coloring has been extensively studied over the years. Recently, this problem has received significant attention in the dynamic setting, where we are given a dynamic graph evolving via a sequence of edge insertions and…

数据结构与算法 · 计算机科学 2024-02-08 Sayan Bhattacharya , Martín Costa , Nadav Panski , Shay Solomon

We present the first parallel batch-dynamic algorithm for maintaining a proper $(\Delta + 1)$-vertex coloring. Our approach builds on a new sequential dynamic algorithm inspired by the work of Bhattacharya et al. (SODA'18). The resulting…

数据结构与算法 · 计算机科学 2025-12-10 Chase Hutton , Adam Melrod

With few exceptions (namely, algorithms for maximal matching, $2$-approximate vertex cover, and certain constant-stretch spanners), all known fully dynamic algorithms in general graphs require (amortized) $\Omega(\log n)$ update/query time.…

数据结构与算法 · 计算机科学 2019-07-11 Monika Henzinger , Pan Peng

In this paper, we present improved algorithms for the $(\Delta+1)$ (vertex) coloring problem in the Congested-Clique model of distributed computing. In this model, the input is a graph on $n$ nodes, initially each node knows only its…

数据结构与算法 · 计算机科学 2020-01-14 Merav Parter

Several recent results from dynamic and sublinear graph coloring are surveyed. This problem is widely studied and has motivating applications like network topology control, constraint satisfaction, and real-time resource scheduling. Graph…

数据结构与算法 · 计算机科学 2026-01-13 Noam Benson-Tilsen

We present trade-offs in the incremental and fully dynamic settings to maintian a proper coloring. For any fully dynamic $2$-coloring algorithm, the maximum of the update time, number of recolorings, and query time is $\Omega(\log n)$. We…

数据结构与算法 · 计算机科学 2020-02-28 Manas Jyoti Kashyop , N. S. Narayanaswamy , Meghana Nasre , Sai Mohith Potluri

A celebrated result of Johansson in graph theory states that every triangle-free graph of maximum degree $\Delta$ can be properly colored with $O(\Delta/\ln\Delta)$ colors, improving upon the "greedy bound" of $\Delta+1$ coloring in general…

数据结构与算法 · 计算机科学 2026-04-23 Sepehr Assadi , Helia Yazdanyar

Distributed graph coloring is one of the most extensively studied problems in distributed computing. There is a canonical family of distributed graph coloring algorithms known as the locally-iterative coloring algorithms, first formalized…

数据结构与算法 · 计算机科学 2023-01-31 Xinyu Fu , Yitong Yin , Chaodong Zheng

We consider the problem of maintaining a $(1+\epsilon)\Delta$-edge coloring in a dynamic graph $G$ with $n$ nodes and maximum degree at most $\Delta$. The state-of-the-art update time is $O_\epsilon(\text{polylog}(n))$, by Duan, He and…

数据结构与算法 · 计算机科学 2023-11-07 Sayan Bhattacharya , Martín Costa , Nadav Panski , Shay Solomon

Given a dynamic graph $G$ with $n$ vertices and $m$ edges subject to insertion an deletions of edges, we show how to maintain a $(1+\varepsilon)\Delta$-edge-colouring of $G$ without the use of randomisation. More specifically, we show a…

数据结构与算法 · 计算机科学 2025-11-10 Aleksander B. G. Christiansen

We give a new randomized distributed algorithm for $(\Delta+1)$-coloring in the LOCAL model, running in $O(\sqrt{\log \Delta})+ 2^{O(\sqrt{\log \log n})}$ rounds in a graph of maximum degree~$\Delta$. This implies that the…

数据结构与算法 · 计算机科学 2023-10-13 David G. Harris , Johannes Schneider , Hsin-Hao Su

Vertex coloring is one of the classic symmetry breaking problems studied in distributed computing. In this paper we present a new algorithm for $(\Delta+1)$-list coloring in the randomized ${\sf LOCAL}$ model running in…

分布式、并行与集群计算 · 计算机科学 2019-03-13 Yi-Jun Chang , Wenzheng Li , Seth Pettie

Vizing's theorem states that every graph $G$ of maximum degree $\Delta$ can be properly edge-colored using $\Delta + 1$ colors. The fastest currently known $(\Delta+1)$-edge-coloring algorithm for general graphs is due to Sinnamon and runs…

数据结构与算法 · 计算机科学 2025-08-06 Anton Bernshteyn , Abhishek Dhawan

We provide novel deterministic distributed vertex coloring algorithms. As our main result, we give a deterministic distributed algorithm to compute a $(\Delta+1)$-coloring of an $n$-node graph with maximum degree $\Delta$ in…

数据结构与算法 · 计算机科学 2019-07-10 Fabian Kuhn

Consider the following simple coloring algorithm for a graph on $n$ vertices. Each vertex chooses a color from $\{1, \dotsc, \Delta(G) + 1\}$ uniformly at random. While there exists a conflicted vertex choose one such vertex uniformly at…

数据结构与算法 · 计算机科学 2021-05-04 Daniel Bertschinger , Johannes Lengler , Anders Martinsson , Robert Meier , Angelika Steger , Miloš Trujić , Emo Welzl

We consider the dynamic graph coloring problem restricted to the class of interval graphs. At each update step the algorithm is presented with an interval to be colored, or a previously colored interval to delete. The goal of the algorithm…

数据结构与算法 · 计算机科学 2020-01-28 Girish Raguvir J , Manas Jyoti Kashyop , N. S. Narayanaswamy
‹ 上一页 1 2 3 10 下一页 ›