中文
相关论文

相关论文: Derandomized concentration bounds for polynomials,…

200 篇论文

Whether or not the problem of finding maximal independent sets (MIS) in hypergraphs is in (R)NC is one of the fundamental problems in the theory of parallel computing. Unlike the well-understood case of MIS in graphs, for the hypergraph…

数据结构与算法 · 计算机科学 2014-08-14 Ioana O. Bercea , Navin Goyal , David G. Harris , Aravind Srinivasan

Derandomization is one of the classic topics studied in the theory of parallel computations, dating back to the early 1980s. Despite much work, all known techniques lead to deterministic algorithms that are not work-efficient. For instance,…

数据结构与算法 · 计算机科学 2025-04-23 Mohsen Ghaffari , Christoph Grunau

Given a graph, a maximal independent set (MIS) is a maximal subset of pairwise non-adjacent vertices. Finding an MIS is a fundamental problem in distributed computing. Although the problem is extensively studied and well understood in…

分布式、并行与集群计算 · 计算机科学 2018-05-10 Fabian Kuhn , Chaodong Zheng

The Maximal Independent Set (MIS) problem is one of the basics in the study of locality in distributed graph algorithms. This paper presents an extremely simple randomized algorithm providing a near-optimal local complexity for this…

数据结构与算法 · 计算机科学 2015-07-14 Mohsen Ghaffari

We provide a tight analysis which settles the round complexity of the well-studied parallel randomized greedy MIS algorithm, thus answering the main open question of Blelloch, Fineman, and Shun [SPAA'12]. The parallel/distributed randomized…

数据结构与算法 · 计算机科学 2019-05-17 Manuela Fischer , Andreas Noever

This paper addresses the cornerstone family of \emph{local problems} in distributed computing, and investigates the curious gap between randomized and deterministic solutions under bandwidth restrictions. Our main contribution is in…

分布式、并行与集群计算 · 计算机科学 2016-08-09 Keren Censor-Hillel , Merav Parter , Gregory Schwartzman

We investigate the distributed complexity of maximal matching and maximal independent set (MIS) in hypergraphs in the LOCAL model. A maximal matching of a hypergraph $H=(V_H,E_H)$ is a maximal disjoint set $M\subseteq E_H$ of hyperedges and…

数据结构与算法 · 计算机科学 2022-11-04 Alkida Balliu , Sebastian Brandt , Fabian Kuhn , Dennis Olivetti

A $t$-ruling set of a graph $G = (V, E)$ is a vertex-subset $S \subseteq V$ that is independent and satisfies the property that every vertex $v \in V$ is at a distance of at most $t$ from some vertex in $S$. A \textit{maximal independent…

分布式、并行与集群计算 · 计算机科学 2012-07-16 Kishore Kothapalli , Sriram Pemmaraju

We show that the maximum independent set problem (MIS) on an $n$-vertex graph can be solved in $1.1996^nn^{O(1)}$ time and polynomial space, which even is faster than Robson's $1.2109^{n}n^{O(1)}$-time exponential-space algorithm published…

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

We consider the problem of designing deterministic graph algorithms for the model of Massively Parallel Computation (MPC) that improve with the sparsity of the input graph, as measured by the notion of arboricity. For the problems of…

数据结构与算法 · 计算机科学 2023-07-03 Manuela Fischer , Jeff Giliberti , Christoph Grunau

Fundamental local symmetry breaking problems such as Maximal Independent Set (MIS) and coloring have been recognized as important by the community, and studied extensively in (standard) graphs. In particular, fast (i.e., logarithmic run…

分布式、并行与集群计算 · 计算机科学 2014-10-01 Shay Kutten , Danupon Nanongkai , Gopal Pandurangan , Peter Robinson

The greedy sequential algorithm for maximal independent set (MIS) loops over the vertices in arbitrary order adding a vertex to the resulting set if and only if no previous neighboring vertex has been added. In this loop, as in many…

数据结构与算法 · 计算机科学 2012-02-16 Guy Blelloch , Jeremy Fineman , Julian Shun

We develop a general deterministic distributed method for locally rounding fractional solutions of graph problems for which the analysis can be broken down into analyzing pairs of vertices. Roughly speaking, the method can transform…

数据结构与算法 · 计算机科学 2022-09-26 Salwa Faour , Mohsen Ghaffari , Christoph Grunau , Fabian Kuhn , Václav Rozhoň

The Lov\'{a}sz Local Lemma (LLL) is a cornerstone principle in the probabilistic method of combinatorics, and a seminal algorithm of Moser & Tardos (2010) provides an efficient randomized algorithm to implement it. This can be parallelized…

离散数学 · 计算机科学 2023-10-13 Bernhard Haeupler , David G. Harris

We present the first algorithm for maintaining a maximal independent set (MIS) of a fully dynamic graph---which undergoes both edge insertions and deletions---in polylogarithmic time. Our algorithm is randomized and, per update, takes…

数据结构与算法 · 计算机科学 2019-09-10 Soheil Behnezhad , Mahsa Derakhshan , MohammadTaghi Hajiaghayi , Cliff Stein , Madhu Sudan

Maximal independent set (MIS), maximal matching (MM), and $(\Delta+1)$-coloring in graphs of maximum degree $\Delta$ are among the most prominent algorithmic graph theory problems. They are all solvable by a simple linear-time greedy…

数据结构与算法 · 计算机科学 2020-06-16 Sepehr Assadi , Shay Solomon

Many randomized algorithms can be derandomized efficiently using either the method of conditional expectations or probability spaces with low independence. A series of papers, beginning with work by Luby (1988), showed that in many cases…

数据结构与算法 · 计算机科学 2023-10-13 David G. Harris

We give a maximal independent set (MIS) algorithm that runs in $O(\log \log \Delta)$ rounds in the congested clique model, where $\Delta$ is the maximum degree of the input graph. This improves upon the $O(\frac{\log(\Delta) \cdot \log \log…

分布式、并行与集群计算 · 计算机科学 2018-02-22 Christian Konrad

We develop the first theoretically-efficient algorithm for maintaining the maximal independent set (MIS) of a graph in the parallel batch-dynamic setting. In this setting, a graph is updated with batches of edge insertions/deletions, and…

数据结构与算法 · 计算机科学 2026-04-10 Guy Blelloch , Andrew Brady , Laxman Dhulipala , Jeremy Fineman , Jared Lo

We study a $(1+\epsilon)$-approximate single-source shortest paths (henceforth, $(1+\epsilon)$-SSSP) in $n$-vertex undirected, weighted graphs in the parallel (PRAM) model of computation. A randomized algorithm with polylogarithmic time and…

分布式、并行与集群计算 · 计算机科学 2020-10-01 Elkin Michael , Matar Shaked
‹ 上一页 1 2 3 10 下一页 ›