中文
相关论文

相关论文: Recognizing When Heuristics Can Approximate Minimu…

200 篇论文

Covering all edges of a graph by a small number of vertices, this is the NP-complete Vertex Cover problem. It is among the most fundamental graph-algorithmic problems. Following a recent trend in studying temporal graphs (a sequence of…

计算复杂性 · 计算机科学 2020-07-02 Till Fluschnik , Rolf Niedermeier , Valentin Rohm , Philipp Zschoche

In network analysis and graph mining, closeness centrality is a popular measure to infer the importance of a vertex. Computing closeness efficiently for individual vertices received considerable attention. The NP-hard problem of group…

数据结构与算法 · 计算机科学 2019-11-11 Eugenio Angriman , Alexander van der Grinten , Henning Meyerhenke

For a graph $G=(V,E)$, a set $D \subseteq V$ is called a semitotal dominating set of $G$ if $D$ is a dominating set of $G$, and every vertex in $D$ is within distance~$2$ of another vertex of~$D$. The \textsc{Minimum Semitotal Domination}…

离散数学 · 计算机科学 2017-11-30 Michael A. Henning , Arti Pandey

We consider the following NP-hard problem: in a weighted graph, find a minimum cost set of vertices whose removal leaves a graph in which no two cycles share an edge. We obtain a constant-factor approximation algorithm, based on the…

数据结构与算法 · 计算机科学 2015-05-14 Samuel Fiorini , Gwenaël Joret , Ugo Pietropaoli

For a graph $H$, the $H$-free Edge Deletion problem asks whether there exist at most $k$ edges whose deletion from the input graph $G$ results in a graph without any induced copy of $H$. We prove that $H$-free Edge Deletion is NP-complete…

数据结构与算法 · 计算机科学 2015-09-15 N. R. Aravind , R. B. Sandeep , Naveen Sivadasan

We investigate the performance of a deterministic GREEDY algorithm for the problem of maximizing functions under a partition matroid constraint. We consider non-monotone submodular functions and monotone subadditive functions. Even though…

离散数学 · 计算机科学 2019-02-22 Tobias Friedrich , Andreas Göbel , Frank Neumann , Francesco Quinzan , Ralf Rothenberger

The Connected Vertex Cover problem is to decide if a graph G has a vertex cover of size at most $k$ that induces a connected subgraph of $G$. This is a well-studied problem, known to be NP-complete for restricted graph classes, and, in…

数据结构与算法 · 计算机科学 2018-07-06 Matthew Johnson , Giacomo Paesani , Daniel Paulusma

A hedge graph is a graph whose edge set has been partitioned into groups called hedges. Here we consider a generalization of the well-known \textsc{Cluster Deletion} problem, named \textsc{Hedge Cluster Deletion}. The task is to compute the…

数据结构与算法 · 计算机科学 2025-12-05 Athanasios L. Konstantinidis , Charis Papadopoulos , Georgios Velissaris

We study the minimization of fixed-degree polynomials over the simplex. This problem is well-known to be NP-hard, as it contains the maximum stable set problem in graph theory as a special case. In this paper, we consider a rational…

最优化与控制 · 数学 2014-07-09 Etienne de Klerk , Monique Laurent , Zhao Sun

$\delta$-Covering, for some covering range $\delta>0$, is a continuous facility location problem on undirected graphs where all edges have unit length. The facilities may be positioned on the vertices as well as on the interior of the…

数据结构与算法 · 计算机科学 2024-08-09 Tim A. Hartmann , Tom Janßen

This paper presents the results of an experimental study of graph partitioning. We describe a new heuristic technique, path optimization, and its application to two variations of graph partitioning: the max_cut problem and the…

组合数学 · 数学 2016-09-06 Jonathan Berry , Mark Goldberg

Typical performance of approximation algorithms is studied for randomized minimum vertex cover problems. A wide class of random graph ensembles characterized by an arbitrary degree distribution is discussed with some theoretical frameworks.…

无序系统与神经网络 · 物理学 2016-11-10 Satoshi Takabe , Koji Hukushima

Much combinatorial optimisation problems constitute a non-polynomial (NP) hard optimisation problem, i.e., they can not be solved in polynomial time. One such problem is finding the shortest route between two nodes on a graph.…

机器学习 · 统计学 2017-09-08 Alessandro Bay , Biswa Sengupta

Let $H$ be a fixed undirected graph on $k$ vertices. The $H$-hitting set problem asks for deleting a minimum number of vertices from a given graph $G$ in such a way that the resulting graph has no copies of $H$ as a subgraph. This problem…

数据结构与算法 · 计算机科学 2020-12-01 Noah Brüstle , Tal Elbaz , Hamed Hatami , Onur Kocer , Bingchan Ma

Approximate solutions to various NP-hard combinatorial optimization problems have been found by learned heuristics using complex learning models. In particular, vertex (node) classification in graphs has been a helpful method towards…

社会与信息网络 · 计算机科学 2022-11-01 Ali Baran Taşdemir , Tuna Karacan , Emir Kaan Kırmacı , Lale Özkahya

Given a set ${\cal R}=\{R_1,R_2,..., R_n\}$ of $n$ randomly positioned axis parallel rectangles in 2D, the problem of computing the minimum clique cover (MCC) and maximum independent set (MIS) for the intersection graph $G({\cal R})$ of the…

计算几何 · 计算机科学 2012-12-05 Ritankar Mandal , Anirban Ghosh , Sasanka Roy , Subhas C. Nandy

We provide a comprehensive reply to the comment written by Stefan Boettcher [arXiv:2210.00623] and argue that the comment singles out one particular non-representative example problem, entirely focusing on the maximum cut problem (MaxCut)…

机器学习 · 计算机科学 2023-03-23 Martin J. A. Schuetz , J. Kyle Brubaker , Helmut G. Katzgraber

Finding maximum-weight independent sets in graphs is an important NP-hard optimization problem. Given a vertex-weighted graph $G$, the task is to find a subset of pairwise non-adjacent vertices of $G$ with maximum weight. Most recently…

分布式、并行与集群计算 · 计算机科学 2025-10-16 Jannick Borowitz , Ernestine Großmann , Mattthias Schimek

We study the problem of estimating the size of maximum matching and minimum vertex cover in sublinear time. Denoting the number of vertices by $n$ and the average degree in the graph by $\bar{d}$, we obtain the following results for both…

数据结构与算法 · 计算机科学 2022-03-03 Soheil Behnezhad

The Steiner tree problem is one of the classic and most fundamental $\mathcal{NP}$-hard problems: given an arbitrary weighted graph, seek a minimum-cost tree spanning a given subset of the vertices (terminals). Byrka \emph{et al}. proposed…

数据结构与算法 · 计算机科学 2018-11-02 Chi-Yeh Chen