中文
相关论文

相关论文: Weighted Matching in the Semi-Streaming Model

200 篇论文

As the popularity of graph data increases, there is a growing need to count the occurrences of subgraph patterns of interest, for a variety of applications. Many graphs are massive in scale and also fully dynamic (with insertions and…

数据库 · 计算机科学 2022-11-15 Kaixin Wang , Cheng Long , Da Yan , Jie Zhang , H. V. Jagadish

We present the first data structures that maintain near optimal maximum cardinality and maximum weighted matchings on sparse graphs in sublinear time per update. Our main result is a data structure that maintains a $(1+\epsilon)$…

数据结构与算法 · 计算机科学 2013-04-11 Manoj Gupta , Richard Peng

The semi-streaming model is a variant of the streaming model frequently used for the computation of graph problems. It allows the edges of an $n$-node input graph to be read sequentially in $p$ passes using $\tilde{O}(n)$ space. In this…

数据结构与算法 · 计算机科学 2020-01-22 Yi-Jun Chang , Martin Farach-Colton , Tsan-Sheng Hsu , Meng-Tsung Tsai

We present dynamic algorithms with polylogarithmic update time for estimating the size of the maximum matching of a graph undergoing edge insertions and deletions with approximation ratio strictly better than $2$. Specifically, we obtain a…

数据结构与算法 · 计算机科学 2023-04-28 Sayan Bhattacharya , Peter Kiss , Thatchaphol Saranurak , David Wajc

Matching nodes in a graph G = (V, E) is a well-studied algorithmic problem with many applications. The b-matching problem is a generalizati on that allows to match a node with up to b neighbors. This allows more flexible connectivity…

数据结构与算法 · 计算机科学 2024-10-15 Fabian Brandt-Tumescheit , Frieda Gerharz , Henning Meyerhenke

We describe approximation algorithms in Linial's classic LOCAL model of distributed computing to find maximum-weight matchings in a hypergraph of rank $r$. Our main result is a deterministic algorithm to generate a matching which is an…

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

Let G be an edge-weighted hypergraph on n vertices, m edges of size \le s, where the edges have real weights in an interval [1,W]. We show that if we can approximate a maximum weight matching in G within factor alpha in time T(n,m,W) then…

数据结构与算法 · 计算机科学 2011-01-12 Andrzej Lingas , Cui Di

Given a complete graph with $n$ vertices and non-negative edge weights, where $n$ is divisible by 3, the maximum weight 3-path packing problem is to find a set of $n/3$ vertex-disjoint 3-paths such that the total weight of the 3-paths in…

数据结构与算法 · 计算机科学 2025-12-17 Jingyang Zhao , Mingyu Xiao

The online matching problem was introduced by Karp, Vazirani and Vazirani (STOC 1990) on bipartite graphs with vertex arrivals. It is well-known that the optimal competitive ratio is $1-1/e$ for both integral and fractional versions of the…

数据结构与算法 · 计算机科学 2026-04-20 Sander Borst , Danish Kashaev , Zhuan Khye Koh

We consider the problem of estimating the value of max cut in a graph in the streaming model of computation. At one extreme, there is a trivial $2$-approximation for this problem that uses only $O(\log n)$ space, namely, count the number of…

数据结构与算法 · 计算机科学 2014-09-09 Michael Kapralov , Sanjeev Khanna , Madhu Sudan

We introduce and study the weighted version of an online matching problem in the Euclidean plane with non-crossing constraints: points with non-negative weights arrive online, and an algorithm can match an arriving point to one of the…

数据结构与算法 · 计算机科学 2026-03-11 Joan Boyar , Shahin Kamali , Kim S. Larsen , Ali Fata Lavasani , Yaqiao Li , Denis Pankratov

A distributed network is modeled by a graph having $n$ nodes (processors) and diameter $D$. We study the time complexity of approximating {\em weighted} (undirected) shortest paths on distributed networks with a $O(\log n)$ {\em bandwidth…

数据结构与算法 · 计算机科学 2014-05-23 Danupon Nanongkai

We study the oblivious matching problem, which aims at finding a maximum matching on a graph with unknown edge set. Any algorithm for the problem specifies an ordering of the vertex pairs. The matching is then produced by probing the pairs…

数据结构与算法 · 计算机科学 2020-02-17 Zhihao Gavin Tang , Xiaowei Wu , Yuhao Zhang

A graph G'(V,E') is an \eps-sparsification of G for some \eps>0, if every (weighted) cut in G' is within (1\pm \eps) of the corresponding cut in G. A celebrated result of Benczur and Karger shows that for every undirected graph G, an…

数据结构与算法 · 计算机科学 2015-03-17 Ashish Goel , Michael Kapralov , Sanjeev Khanna

The streaming model was introduced to parameterized complexity independently by Fafianie and Kratsch [MFCS14] and by Chitnis, Cormode, Hajiaghayi and Monemizadeh [SODA15]. Subsequently, it was broadened by Chitnis, Cormode, Esfandiari,…

数据结构与算法 · 计算机科学 2023-08-04 Daniel Lokshtanov , Pranabendu Misra , Fahad Panolan , M. S. Ramanujan , Saket Saurabh , Meirav Zehavi

We study maximum matchings in fully dynamic graphs, which are graphs that undergo both edge insertions and deletions. Our focus is on algorithms that estimate the size of maximum matching after each update while spending a small time. An…

数据结构与算法 · 计算机科学 2023-07-19 Amir Azarmehr , Soheil Behnezhad , Mohammad Roghani

Counting the number of triangles in a graph has many important applications in network analysis. Several frequently computed metrics like the clustering coefficient and the transitivity ratio need to count the number of triangles in the…

数据结构与算法 · 计算机科学 2013-04-24 Mostafa Haghir Chehreghani

Graph Sampling provides an efficient yet inexpensive solution for analyzing large graphs. While extracting small representative subgraphs from large graphs, the challenge is to capture the properties of the original graph. Several sampling…

数据结构与算法 · 计算机科学 2019-10-21 Muhammad Irfan Yousuf , Raheel Anwar

We consider three variants of the problem of finding a maximum weight restricted $2$-matching in a subcubic graph $G$. (A $2$-matching is any subset of the edges such that each vertex is incident to at most two of its edges.) Depending on…

数据结构与算法 · 计算机科学 2021-01-01 Katarzyna Paluch , Mateusz Wasylkiewicz

In this work we provide a new technique to design fast approximation algorithms for graph problems where the points of the graph lie in a metric space. Specifically, we present a sampling approach for such metric graphs that, using a…

数据结构与算法 · 计算机科学 2018-07-26 Hossein Esfandiari , Michael Mitzenmacher