140 research outputs found

    Constant-Factor FPT Approximation for Capacitated k-Median

    Get PDF
    Capacitated k-median is one of the few outstanding optimization problems for which the existence of a polynomial time constant factor approximation algorithm remains an open problem. In a series of recent papers algorithms producing solutions violating either the number of facilities or the capacity by a multiplicative factor were obtained. However, to produce solutions without violations appears to be hard and potentially requires different algorithmic techniques. Notably, if parameterized by the number of facilities k, the problem is also W[2] hard, making the existence of an exact FPT algorithm unlikely. In this work we provide an FPT-time constant factor approximation algorithm preserving both cardinality and capacity of the facilities. The algorithm runs in time 2^O(k log k) n^O(1) and achieves an approximation ratio of 7+epsilon

    Maximum matching width: new characterizations and a fast algorithm for dominating set

    Get PDF
    We give alternative definitions for maximum matching width, e.g. a graph GG has mmw(G)k\operatorname{mmw}(G) \leq k if and only if it is a subgraph of a chordal graph HH and for every maximal clique XX of HH there exists A,B,CXA,B,C \subseteq X with ABC=XA \cup B \cup C=X and A,B,Ck|A|,|B|,|C| \leq k such that any subset of XX that is a minimal separator of HH is a subset of either A,BA, B or CC. Treewidth and branchwidth have alternative definitions through intersections of subtrees, where treewidth focuses on nodes and branchwidth focuses on edges. We show that mm-width combines both aspects, focusing on nodes and on edges. Based on this we prove that given a graph GG and a branch decomposition of mm-width kk we can solve Dominating Set in time O(8k)O^*({8^k}), thereby beating O(3tw(G))O^*(3^{\operatorname{tw}(G)}) whenever tw(G)>log38×k1.893k\operatorname{tw}(G) > \log_3{8} \times k \approx 1.893 k. Note that mmw(G)tw(G)+13mmw(G)\operatorname{mmw}(G) \leq \operatorname{tw}(G)+1 \leq 3 \operatorname{mmw}(G) and these inequalities are tight. Given only the graph GG and using the best known algorithms to find decompositions, maximum matching width will be better for solving Dominating Set whenever tw(G)>1.549×mmw(G)\operatorname{tw}(G) > 1.549 \times \operatorname{mmw}(G)

    Parameterization Above a Multiplicative Guarantee

    Get PDF
    Parameterization above a guarantee is a successful paradigm in Parameterized Complexity. To the best of our knowledge, all fixed-parameter tractable problems in this paradigm share an additive form defined as follows. Given an instance (I,k) of some (parameterized) problem ? with a guarantee g(I), decide whether I admits a solution of size at least (at most) k+g(I). Here, g(I) is usually a lower bound (resp. upper bound) on the maximum (resp. minimum) size of a solution. Since its introduction in 1999 for Max SAT and Max Cut (with g(I) being half the number of clauses and half the number of edges, respectively, in the input), analysis of parameterization above a guarantee has become a very active and fruitful topic of research. We highlight a multiplicative form of parameterization above a guarantee: Given an instance (I,k) of some (parameterized) problem ? with a guarantee g(I), decide whether I admits a solution of size at least (resp. at most) k ? g(I). In particular, we study the Long Cycle problem with a multiplicative parameterization above the girth g(I) of the input graph, and provide a parameterized algorithm for this problem. Apart from being of independent interest, this exemplifies how parameterization above a multiplicative guarantee can arise naturally. We also show that, for any fixed constant ?>0, multiplicative parameterization above g(I)^(1+?) of Long Cycle yields para-NP-hardness, thus our parameterization is tight in this sense. We complement our main result with the design (or refutation of the existence) of algorithms for other problems parameterized multiplicatively above girth

    FPT Approximation and Subexponential Algorithms for Covering Few or Many Edges

    Get PDF
    We study the ?-Fixed Cardinality Graph Partitioning (?-FCGP) problem, the generic local graph partitioning problem introduced by Bonnet et al. [Algorithmica 2015]. In this problem, we are given a graph G, two numbers k,p and 0 ? ? ? 1, the question is whether there is a set S ? V of size k with a specified coverage function cov_?(S) at least p (or at most p for the minimization version). The coverage function cov_?(?) counts edges with exactly one endpoint in S with weight ? and edges with both endpoints in S with weight 1 - ?. ?-FCGP generalizes a number of fundamental graph problems such as Densest k-Subgraph, Max k-Vertex Cover, and Max (k,n-k)-Cut. A natural question in the study of ?-FCGP is whether the algorithmic results known for its special cases, like Max k-Vertex Cover, could be extended to more general settings. One of the simple but powerful methods for obtaining parameterized approximation [Manurangsi, SOSA 2019] and subexponential algorithms [Fomin et al. IPL 2011] for Max k-Vertex Cover is based on the greedy vertex degree orderings. The main insight of our work is that the idea of greed vertex degree ordering could be used to design fixed-parameter approximation schemes (FPT-AS) for ? > 0 and the subexponential-time algorithms for the problem on apex-minor free graphs for maximization with ? > 1/3 and minimization with ? < 1/3

    Fast and Deterministic Approximations for k-Cut

    Get PDF
    In an undirected graph, a k-cut is a set of edges whose removal breaks the graph into at least k connected components. The minimum weight k-cut can be computed in n^O(k) time, but when k is treated as part of the input, computing the minimum weight k-cut is NP-Hard [Goldschmidt and Hochbaum, 1994]. For poly(m,n,k)-time algorithms, the best possible approximation factor is essentially 2 under the small set expansion hypothesis [Manurangsi, 2017]. Saran and Vazirani [1995] showed that a (2 - 2/k)-approximately minimum weight k-cut can be computed via O(k) minimum cuts, which implies a O~(km) randomized running time via the nearly linear time randomized min-cut algorithm of Karger [2000]. Nagamochi and Kamidoi [2007] showed that a (2 - 2/k)-approximately minimum weight k-cut can be computed deterministically in O(mn + n^2 log n) time. These results prompt two basic questions. The first concerns the role of randomization. Is there a deterministic algorithm for 2-approximate k-cuts matching the randomized running time of O~(km)? The second question qualitatively compares minimum cut to 2-approximate minimum k-cut. Can 2-approximate k-cuts be computed as fast as the minimum cut - in O~(m) randomized time? We give a deterministic approximation algorithm that computes (2 + eps)-minimum k-cuts in O(m log^3 n / eps^2) time, via a (1 + eps)-approximation for an LP relaxation of k-cut

    Parameterized Approximation Scheme for Feedback Vertex Set

    Get PDF
    Feedback Vertex Set (FVS) is one of the most studied vertex deletion problems in the field of graph algorithms. In the decision version of the problem, given a graph G and an integer k, the question is whether there exists a set S of at most k vertices in G such that G-S is acyclic. It is one of the first few problems which were shown to be NP-complete, and has been extensively studied from the viewpoint of approximation and parameterized algorithms. The best-known polynomial time approximation algorithm for FVS is a 2-factor approximation, while the best known deterministic and randomized FPT algorithms run in time ?^*(3.460^k) and ?^*(2.7^k) respectively. In this paper, we contribute to the newly established area of parameterized approximation, by studying FVS in this paradigm. In particular, we combine the approaches of parameterized and approximation algorithms for the study of FVS, and achieve an approximation guarantee with a factor better than 2 in randomized FPT running time, that improves over the best known parameterized algorithm for FVS. We give three simple randomized (1+?) approximation algorithms for FVS, running in times ?^*(2^{?k}? 2.7^{(1-?)k}), ?^*(({(4/(1+?))^{(1+?)}}?{(?/3)^?})^k), and ?^*(4^{(1-?)k}) respectively for every ? ? (0,1). Combining these three algorithms, we obtain a factor (1+?) approximation algorithm for FVS, which has better running time than the best-known (randomized) FPT algorithm for every ? ? (0, 1). This is the first attempt to look at a parameterized approximation of FVS to the best of our knowledge. Our algorithms are very simple, and they rely on some well-known reduction rules used for arriving at FPT algorithms for FVS

    Parameterized Exact and Approximation Algorithms for Maximum kk-Set Cover and Related Satisfiability Problems

    Full text link
    Given a family of subsets S\mathcal S over a set of elements~XX and two integers~pp and~kk, Max k-Set Cover consists of finding a subfamily~TS\mathcal T \subseteq \mathcal S of cardinality at most~kk, covering at least~pp elements of~XX. This problem is W[2]-hard when parameterized by~kk, and FPT when parameterized by pp. We investigate the parameterized approximability of the problem with respect to parameters~kk and~pp. Then, we show that Max Sat-k, a satisfiability problem generalizing Max k-Set Cover, is also FPT with respect to parameter~pp.Comment: Accepted in RAIRO - Theoretical Informatics and Application
    corecore