中文
相关论文

相关论文: Coloring k-colorable graphs using relatively small…

200 篇论文

We consider the problem of coloring k-colorable graphs with the fewest possible colors. We present a randomized polynomial time algorithm that colors a 3-colorable graph on $n$ vertices with min O(Delta^{1/3} log^{1/2} Delta log n),…

数据结构与算法 · 计算机科学 2007-05-23 David Karger , Rajeev Motwani , Madhu Sudan

We present a polynomial-time algorithm that colors any 3-colorable $n$-vertex graph using $O(n^{0.19539})$ colors, improving upon the previous best bound of $\widetilde{O}(n^{0.19747})$ by Kawarabayashi, Thorup, and Yoneda [STOC 2024]. Our…

数据结构与算法 · 计算机科学 2026-02-06 Nikhil Bansal , Neng Huang , Euiwoong Lee

We consider the problem of coloring a 3-colorable graph in polynomial time using as few colors as possible. This is one of the most challenging problems in graph algorithms. In this paper using Blum's notion of ``progress'', we develop a…

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

The coloring problem (i.e., computing the chromatic number of a graph) can be solved in $O^*(2^n)$ time, as shown by Bj\"orklund, Husfeldt and Koivisto in 2009. For $k=3,4$, better algorithms are known for the $k$-coloring problem.…

数据结构与算法 · 计算机科学 2021-02-15 Or Zamir

Graph coloring problems are a central topic of study in the theory of algorithms. We study the problem of partially coloring partially colorable graphs. For $\alpha \leq 1$ and $k \in \mathbb{Z}^+$, we say that a graph $G=(V,E)$ is…

数据结构与算法 · 计算机科学 2019-09-02 Suprovat Ghoshal , Anand Louis , Rahul Raychaudhury

We give a randomized algorithm that properly colors the vertices of a triangle-free graph G on n vertices using O(\Delta(G)/ log \Delta(G)) colors, where \Delta(G) is the maximum degree of G. The algorithm takes O(n\Delta2(G)log\Delta(G))…

组合数学 · 数学 2011-02-01 Mohammad Shoaib Jamall

We present three sublinear randomized algorithms for vertex-coloring of graphs with maximum degree $\Delta$. The first is a simple algorithm that extends the idea of Morris and Song to color graphs with maximum degree $\Delta$ using…

数据结构与算法 · 计算机科学 2025-02-11 Asaf Ferber , Liam Hardiman , Xiaonan Chen

In the $\ell$-Coloring Problem, we are given a graph on $n$ nodes, and tasked with determining if its vertices can be properly colored using $\ell$ colors. In this paper we study below-guarantee graph coloring, which tests whether an…

数据结构与算法 · 计算机科学 2025-09-17 Shyan Akmal , Tomohiro Koana

Lokshtanov, Marx, and Saurabh SODA 2011 proved that there is no $(k-\epsilon)^{\operatorname{pw}(G)}\operatorname{poly}(n)$ time algorithm for deciding if an $n$-vertex graph $G$ with pathwidth $\operatorname{pw}(G)$ admits a proper vertex…

数据结构与算法 · 计算机科学 2015-07-10 Andreas Björklund

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

Let $G=(V,E)$ be a multigraph of maximum degree $\Delta$. The edges of $G$ can be colored with at most $\frac{3}{2}\Delta$ colors by Shannon's theorem. We study lower bounds on the size of subgraphs of $G$ that can be colored with $\Delta$…

数据结构与算法 · 计算机科学 2013-09-25 Michał Farnik , Łukasz Kowalik , Arkadiusz Socała

This paper studies sufficient conditions to obtain efficient distributed algorithms coloring graphs optimally (i.e.\ with the minimum number of colors) in the LOCAL model of computation. Most of the work on distributed vertex coloring so…

组合数学 · 数学 2019-01-25 Étienne Bamas , Louis Esperet

We study the maximization version of the fundamental graph coloring problem. Here the goal is to color the vertices of a k-colorable graph with k colors so that a maximum fraction of edges are properly colored (i.e. their endpoints receive…

计算复杂性 · 计算机科学 2015-05-14 Venkatesan Guruswami , Ali Kemal Sinop

Graph coloring is one of the central problems in distributed graph algorithms. Much of the research on this topic has focused on coloring with $\Delta+1$ colors, where $\Delta$ denotes the maximum degree. Using $\Delta+1$ colors may be…

数据结构与算法 · 计算机科学 2017-08-24 Mohsen Ghaffari , Christiana Lymouri

We develop an algorithmic framework for graph colouring that reduces the problem to verifying a local probabilistic property of the independent sets. With this we give, for any fixed $k\ge 3$ and $\varepsilon>0$, a randomised…

数据结构与算法 · 计算机科学 2020-04-16 Ewan Davies , Ross J. Kang , François Pirot , Jean-Sébastien Sereni

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

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

A seminal palette sparsification result of Assadi, Chen, and Khanna states that in every $n$-vertex graph of maximum degree $\Delta$, sampling $\Theta(\log n)$ colors per vertex from $\{1, \ldots, \Delta+1\}$ almost certainly allows for a…

数据结构与算法 · 计算机科学 2024-11-05 Abhishek Dhawan

Given a graph $G$ with $n$ vertices and maximum degree $\Delta$, it is known that $G$ admits a vertex coloring with $\Delta + 1$ colors such that no edge of $G$ is monochromatic. This can be seen constructively by a simple greedy algorithm,…

数据结构与算法 · 计算机科学 2021-02-16 Jackson Morris , Fang Song

We prove the existence of a function $f :\mathbb{N} \to \mathbb{N}$ such that the vertices of every planar graph with maximum degree $\Delta$ can be 3-colored in such a way that each monochromatic component has at most $f(\Delta)$ vertices.…

组合数学 · 数学 2014-06-19 Louis Esperet , Gwenaël Joret
‹ 上一页 1 2 3 10 下一页 ›