中文
相关论文

相关论文: Dynamic Data Structures for Interval Coloring

200 篇论文

A graph $G$ is called interval colorable if it has a proper edge coloring with colors $1,2,3,\dots$ such that the colors of the edges incident to every vertex of $G$ form an interval of integers. Not all graphs are interval colorable; in…

组合数学 · 数学 2021-06-08 Armen S. Asratian , Carl Johan Casselgren , Petros A. Petrosyan

We study the edge-colouring problem, and give efficient algorithms where the number of colours is parameterised by the graph's arboricity, $\alpha$. In a dynamic graph, subject to insertions and deletions, we give a deterministic algorithm…

数据结构与算法 · 计算机科学 2025-01-15 Aleksander B. G. Christiansen , Eva Rotenberg , Juliette Vlieghe

The $\Delta$-vertex coloring problem has become one of the prototypical problems for understanding the complexity of local distributed graph problems on constant-degree graphs. The major open problem is whether the problem can be solved…

分布式、并行与集群计算 · 计算机科学 2025-04-08 Manuel Jakob , Yannic Maus

An \emph{interval $t$-coloring} of a graph $G$ is a proper edge-coloring with colors $1,\dots,t$ such that the colors on the edges incident to every vertex of $G$ are colored by consecutive colors. A graph $G$ is called \emph{interval…

组合数学 · 数学 2024-09-27 Petros A. Petrosyan , Hrant H. Khachatrian , Hovhannes G. Tananyan

We study the online graph coloring problem restricted to the intersection graphs of intervals with lengths in $[1,\sigma]$. For $\sigma=1$ it is the class of unit interval graphs, and for $\sigma=\infty$ the class of all interval graphs.…

We consider the discrepancy problem of coloring $n$ intervals with $k$ colors such that at each point on the line, the maximal difference between the number of intervals of any two colors is minimal. Somewhat surprisingly, a coloring with…

数据结构与算法 · 计算机科学 2010-12-20 Antonios Antoniadis , Falk Hüffner , Pascal Lenzner , Carsten Moldenhauer , Alexander Souza

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

In this paper we study the dynamic versions of two basic graph problems: Minimum Dominating Set and its variant Minimum Connected Dominating Set. For those two problems, we present algorithms that maintain a solution under edge insertions…

数据结构与算法 · 计算机科学 2019-01-29 Niklas Hjuler , Giuseppe F. Italiano , Nikos Parotsidis , David Saulpic

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

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 present paper studies local distributed graph problems in highly dynamic networks. Communication and changes of the graph happen in synchronous rounds and our algorithms always, i.e., in every round, satisfy non-trivial guarantees, no…

数据结构与算法 · 计算机科学 2018-12-10 Philipp Bamberger , Fabian Kuhn , Yannic Maus

We study dynamic graph algorithms in the Massively Parallel Computation model, which was inspired by practical data processing systems. Our goal is to provide algorithms that can efficiently handle large batches of edge insertions and…

数据结构与算法 · 计算机科学 2021-01-12 Krzysztof Nowicki , Krzysztof Onak

In the \emph{dynamic edge coloring} problem, one has to maintain a graph of maximum degree $\Delta$ with at most $\Delta+c$ colors, given updates to the edges of the graph. An important objective is to minimize the \emph{recourse}, which is…

数据结构与算法 · 计算机科学 2026-05-12 Haim Kaplan , David Naori , Yaniv Sadeh

The main goal of this paper is to formalize and explore a connection between chromatic properties of graphs with geometric representations and competitive analysis of on-line algorithms, which became apparent after the recent construction…

数据结构与算法 · 计算机科学 2016-12-30 Tomasz Krawczyk , Bartosz Walczak

Given a large graph, the densest-subgraph problem asks to find a subgraph with maximum average degree. When considering the top-$k$ version of this problem, a na\"ive solution is to iteratively find the densest subgraph and remove it in…

数据结构与算法 · 计算机科学 2017-08-30 Muhammad Anis Uddin Nasir , Aristides Gionis , Gianmarco De Francisci Morales , Sarunas Girdzijauskas

In this paper we present a deterministic CONGEST algorithm to compute an $O(k\Delta)$-vertex coloring in $O(\Delta/k)+\log^* n$ rounds, where $\Delta$ is the maximum degree of the network graph and $1\leq k\leq O(\Delta)$ can be freely…

数据结构与算法 · 计算机科学 2023-02-28 Yannic Maus

We study the problem of online graph coloring for $k$-colorable graphs. The best previously known deterministic algorithm uses $\widetilde{O}(n^{1-\frac{1}{k!}})$ colors for general $k$ and $\widetilde{O}(n^{5/6})$ colors for $k = 4$, both…

数据结构与算法 · 计算机科学 2026-04-06 Ken-ichi Kawarabayashi , Hirotaka Yoneda , Masataka Yoneda

Fully dynamic graph is a data structure that (1) supports edge insertions and deletions and (2) answers problem specific queries. The time complexity of (1) and (2) are referred to as the update time and the query time respectively. There…

数据结构与算法 · 计算机科学 2014-04-30 Yoichi Iwata , Keigo Oka

Motivated by recent applications of dominator computations, we consider the problem of dynamically maintaining the dominators of flow graphs through a sequence of insertions and deletions of edges. Our main theoretical contribution is a…

数据结构与算法 · 计算机科学 2016-04-12 Loukas Georgiadis , Giuseppe F. Italiano , Luigi Laura , Federico Santaroni

Vizing's theorem guarantees that every graph with maximum degree $\Delta$ admits an edge coloring using $\Delta + 1$ colors. In online settings - where edges arrive one at a time and must be colored immediately - a simple greedy algorithm…

数据结构与算法 · 计算机科学 2025-07-30 Joakim Blikstad , Ola Svensson , Radu Vintan , David Wajc