Lower Bounds Under Strong Complexity Assumptions Phd Dissertation

Total Page:16

File Type:pdf, Size:1020Kb

Lower Bounds Under Strong Complexity Assumptions Phd Dissertation University of Warsaw Faculty of Mathematics, Informatics and Mechanics Arkadiusz Socała Lower Bounds Under Strong Complexity Assumptions PhD dissertation Supervisor dr hab. Łukasz Kowalik Institute of Informatics University of Warsaw May 2017 Author’s declaration: I hereby declare that this dissertation is my own work. May 20, 2017 . Arkadiusz Socała Supervisor’s declaration: The dissertation is ready to be reviewed May 20, 2017 . dr hab. Łukasz Kowalik Abstract This work is devoted to lower bounds on running time under strong complexity assumptions. We prove that under the Exponential Time Hypothesis there is no algorithm working in time • 2o(n log n) (times a polynomial in the bit size) for Channel Assignment, p • 2o(n log n) for Subgraph Isomorphism, 3=2 • 2o(n ) for Rainbow k-Coloring (for any k ≥ 2), • f(b) · 2o(log b)·n for (a:b)-coloring (for any computable f(b)), • O∗(2o(d log d)) for Minimax Approval Voting. This in particular exclude the existence of algorithms solving these problems in time O∗(cn) (or O∗(cd) in the case of Minimax Approval Voting) for any constant c. Moreover in the cases of Channel Assignment, (a:b)-coloring and Mini- max Approval Voting our lower bounds are tight, showing that currently known algorithms are optimal (unless ETH fails). We also give a lower bound of a different flavor. We show that improving over the best known algorithm for 4-OPT Detection (a problem related to Traveling Salesman Problem), would imply an improvement for All Pairs Shortest Paths. Keywords: Lower Bounds, Fine Grained Complexity, Exponential Time Hypothesis. ACM Classification: F.2.2. 2 Contents 1 Introduction5 1.1 Organization of the dissertation.....................8 1.2 Considered problems...........................8 1.2.1 Channel Assignment .....................8 1.2.2 Subgraph Isomorphism .................... 10 1.2.3 Rainbow k-Coloring ..................... 12 1.2.4 Multicoloring and low degree monomial testing........ 13 1.2.5 Minimax Approval Voting ................. 17 1.2.6 k-OPT Detection ....................... 20 1.3 Articles.................................. 22 1.4 Acknowledgements............................ 23 2 Notation and Preliminaries 25 2.1 Notation.................................. 25 2.2 Exponential-Time Hypothesis toolbox.................. 25 2.2.1 Reducing from 3-CNF-SAT ................... 25 2.2.2 Reducing from other problems.................. 26 3 Channel Assignment 29 3.1 Hardness of Equal Weight Matchings ............... 29 3.1.1 From 3-CNF-SAT to Family Intersection.......... 29 3.1.2 From Family Intersection to Equal Weight Matchings. 31 3.2 Hardness of Channel Assignment .................. 38 4 Subgraph Isomorphism 49 4.1 Overview of the reduction........................ 49 4.2 Grouping clauses............................. 51 4.3 From (3;4)-CNF-SAT to Subgraph Isomorphism with colors... 52 4.4 Removing the colors........................... 56 4.5 From Graph Homomorphism to Subgraph Isomorphism .... 60 5 Rainbow Coloring 61 5.1 Overview.................................. 61 5.2 From (3;4)-CNF-SAT to Subset Rainbow k-Coloring ...... 63 5.3 From Subset Rainbow k-Coloring to Rainbow k-Coloring .. 74 3 5.4 Putting everything together....................... 79 6 Multicoloring and low-degree monomial testing 81 6.1 Preliminaries............................... 81 6.2 Hardness of List (a:b)-coloring .................... 83 6.2.1 The nonuniform case....................... 84 6.2.2 The uniform case......................... 88 6.3 From List (a:b)-coloring to (a:b)-coloring ............ 89 6.4 Low-degree testing............................ 91 7 Minimax Approval Voting 97 7.1 Reduction from (3;4)-CNF-SAT ..................... 97 7.2 Reduction from k × k-Clique ...................... 100 8 4-OPT Detection for Traveling Salesman Problem 103 9 Further Work 107 A Problem Definitions 119 4 Chapter 1 Introduction We would like to be able to quickly solve combinatorial problems that appear in theory or in the real life. However for many of them we do not know efficient algorithms. Therefore the question arises: is it because it is generally impossible or maybe just we do not know appropriate tools yet? In order to answer this question we need to understand the reason of the hardness of the particular problem. One approach to investigate it is to reduce another, perhaps more familiar, problem to our target problem. Such a reduction shows that the target problem has enough expressive power to capture the hardness of the source problem. If the reduced instance is concise enough we can usually derive interesting conclusions about the dependency between the time complexities of these two problems. This approach is commonly used for NP-hard problems. For example, one can reduce an n-variable instance of 3-CNF-SAT to an equivalent nO(1)-vertex instance of 3-Coloring and the reduction algorithm works in polynomial time. There are two ways of looking at the consequences of this reduction. First, it means that if P 6= NP then 3-Coloring has no polynomial time algorithm. However, even if we do not believe that P 6= NP the reduction carries an important message: instead of working on a polynomial time algorithm for 3-Coloring one should rather focus on the structurally simpler 3-CNF-SAT. In this thesis we investigate reductions that are more constrained than the classic polynomial reductions. For example one can observe that the classic reduction from 3-CNF-SAT to 3-Coloring transforms an input formula ' into an O(j'j)-vertex graph, i.e., the size of the output instance is not only polynomial but even linear. This means that a 2o(n)-algorithm for 3-Coloring implies a 2o(j'j) algorithm for 3-CNF-SAT. Again we can interpret this in two ways. First, it is a hint for the researchers to study rather 3-CNF-SAT directly than try to improve the algorithm for 3-Coloring, that captures the full power of 3-CNF-SAT in more convoluted way. On the other hand, if one believes that no 2o(j'j) algorithm for 3-CNF-SAT exists it means there is no hope for 2o(n) algorithm for 3-Coloring. This belief can be captured as a hypothesis, which strengthens P 6= NP; and says that 3-CNF-SAT has no 2o(j'j)-time algorithm. Actually, Impagliazzo, Paturi and Zane [76, 77] show that it is equivalent to assume a slightly weaker claim as follows. 5 Hypothesis 1 (Exponential Time Hypothesis (ETH) [76]). There exists a constant c > 0, such that there is no deterministic algorithm solving 3-CNF-SAT in time O∗(2cn).1 By now ETH became one of standard assumptions for proving lower bounds (see [102] for a survey). As discussed above, a linear reduction from 3-CNF-SAT to 3-Coloring shows that the known O(1:33n)-time algorithm for 3-Coloring [10] is essentially optimal (up to constants). The same situation holds for many NP-complete graph problems, i.e., we know algorithms running in time 2O(n); and this is tight under ETH. This is obviously the case for problems asking for a set of vertices, like Clique or Vertex Cover, or more generally, for problems which admit polynomially (or even subexpo- nentially) checkable O(n)-bit certificates. But there are 2O(n)-time algorithms also for some problems for which such certificates are not known, including e.g., Hamiltonic- ity [71] and Graph Coloring [90]. However, for some problems 2O(n) algorithms are not known, for example the Channel Assignment problem, which is a gener- alization of Graph Coloring, where every edge uv of the graph comes with integer weight w; which means that the colors of u and v must differ by at least w: The best known algorithm for Channel Assignment works in 2O(n log n) time. How can we prove it is tight? For example this thesis contains a reduction from 3-CNF-SAT to Channel As- signment which transforms an instance of 3-CNF-SAT with n variables (and O(n) clauses, which will be explained later) into an instance of Channel Assignment of size O(n= log n). This compression is an important feature of our reduction and it is different than in the case of many classic reductions for showing NP-hardness. As a corollary, a hypothetical 2o(n log n)-time algorithm for Channel Assignment would imply a 2o(n)-time algorithm for 3-CNF-SAT. If we assume the Exponential Time Hypothesis (ETH) then we obtain that Channel Assignment cannot be solved in time 2o(n log n) and the currently known algorithm is essentially optimal. It is worth to note that even though our reduction works in polynomial time it could work as well in arbitrarily large time complexity that is in 2o(n) and still composed with a 2o(n log n)-time algorithm for Channel Assignment it would solve 3-CNF-SAT in time 2o(n). In this thesis we mostly focus on such instance-compressing reductions which exclude 2O(n) algorithms. By studying these dependencies we try to discover the underlying structure of hardness among NP-complete problems. This young subfield, living on the border of algorithmics and complexity theory, is known under the name of Fine Grained Complexity. Let us mention also a stronger version of ETH called Strong Exponential Time Hypothesis (SETH) [76, 77] that says that for every " < 1 there exists k > 3 such that k-CNF-SAT cannot be solved in time O∗(2n): Indeed, an algorithm refuting even this stronger version would be a breakthrough. SETH can be useful for example if one cares about the multiplicative constant in the exponent, i.e., if one’s goal is to 1The O∗ notation suppresses factors polynomial in the input size. 6 prove a lower bound for some problem that would be of the form Ω∗(2cn) for some particular value of c > 0.
Recommended publications
  • Tight Lower Bounds for the Complexity of Multicoloring∗†
    Tight Lower Bounds for the Complexity of Multicoloring∗† Marthe Bonamy1, Łukasz Kowalik2, Michał Pilipczuk3, Arkadiusz Socała4, and Marcin Wrochna5 1 CNRS, LaBRI, Bordeaux, France [email protected] 2 University of Warsaw, Warsaw, Poland [email protected] 3 University of Warsaw, Warsaw, Poland [email protected] 4 University of Warsaw, Warsaw, Poland [email protected] 5 University of Warsaw, Warsaw, Poland [email protected] Abstract In ¢the multicoloring problem, also known as (a:b)-coloring or b-fold coloring, we are given a graph G and a set of a colors, and the task is to assign a subset of b colors to each vertex of G so that adjacent vertices receive disjoint color subsets. This natural generalization of the classic coloring problem (the b = 1 case) is equivalent to finding a homomorphism to the Kneser graph KGa,b, and gives relaxations approaching the fractional chromatic number. We study the complexity of determining whether a graph has an (a:b)-coloring. Our main result is that this problem does not admit an algorithm with running time f(b)·2o(log b)·n, for any computable f(b), unless the Exponential Time Hypothesis (ETH) fails. A (b + 1)n · poly(n)-time algorithm due to Nederlof [2008] shows that this is tight. A direct corollary of our result is that the graph homomorphism problem does not admit a 2O(n+h) algorithm unless ETH fails, even if the target graph is required to be a Kneser graph. This refines the understanding given by the recent lower bound of Cygan et al.
    [Show full text]
  • Coloring Graphs by Translates in the Circle Arxiv:2004.01145V3 [Math.CO]
    Coloring graphs by translates in the circle Pablo Candela, Carlos Catal´a, Robert Hancock, Adam Kabela, Daniel Kr´al', Ander Lamaison, Llu´ısVena Abstract The fractional and circular chromatic numbers are the two most studied non-integral refinements of the chromatic number of a graph. Starting from the definition of a coloring base of a graph, which originated in work related to ergodic theory, we formalize the notion of a gyrocoloring of a graph: the vertices are colored by translates of a single Borel set in the circle group, and neighbouring vertices receive disjoint translates. The corresponding gyrochromatic number of a graph always lies between the fractional chromatic number and the circular chromatic number. We in- vestigate basic properties of gyrocolorings. In particular, we construct examples of graphs whose gyrochromatic number is strictly between the fractional chromatic number and the circular chromatic number. We also establish several equivalent definitions of the gyrochromatic number, in- cluding a version involving all finite abelian groups. 1 Introduction Graph coloring is one of the most studied topics in graph theory. In order to refine the basic notion of the chromatic number of a graph, various non-integral relaxations were introduced, in particular, to capture how close a graph is to arXiv:2004.01145v3 [math.CO] 11 Jan 2021 being colorable with fewer colors. Among them, the two most intensively studied notions are the circular chromatic number and the fractional chromatic number. We build on the work of Avila and the first author [1] who introduced a notion of a coloring base of a graph in relation to applications of their new proof of a generalization of Rokhlin's lemma; this notion leads to a chromatic parameter of a graph which lies between the circular and fractional chromatic numbers.
    [Show full text]
  • Graph Algorithms
    Graph Algorithms PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Wed, 29 Aug 2012 18:41:05 UTC Contents Articles Introduction 1 Graph theory 1 Glossary of graph theory 8 Undirected graphs 19 Directed graphs 26 Directed acyclic graphs 28 Computer representations of graphs 32 Adjacency list 35 Adjacency matrix 37 Implicit graph 40 Graph exploration and vertex ordering 44 Depth-first search 44 Breadth-first search 49 Lexicographic breadth-first search 52 Iterative deepening depth-first search 54 Topological sorting 57 Application: Dependency graphs 60 Connectivity of undirected graphs 62 Connected components 62 Edge connectivity 64 Vertex connectivity 65 Menger's theorems on edge and vertex connectivity 66 Ear decomposition 67 Algorithms for 2-edge-connected components 70 Algorithms for 2-vertex-connected components 72 Algorithms for 3-vertex-connected components 73 Karger's algorithm for general vertex connectivity 76 Connectivity of directed graphs 82 Strongly connected components 82 Tarjan's strongly connected components algorithm 83 Path-based strong component algorithm 86 Kosaraju's strongly connected components algorithm 87 Application: 2-satisfiability 88 Shortest paths 101 Shortest path problem 101 Dijkstra's algorithm for single-source shortest paths with positive edge lengths 106 Bellman–Ford algorithm for single-source shortest paths allowing negative edge lengths 112 Johnson's algorithm for all-pairs shortest paths in sparse graphs 115 Floyd–Warshall algorithm
    [Show full text]
  • Fractional Graph Theory a Rational Approach to the Theory of Graphs
    Fractional Graph Theory A Rational Approach to the Theory of Graphs Edward R. Scheinerman The Johns Hopkins University Baltimore, Maryland Daniel H. Ullman The George Washington University Washington, DC With a Foreword by Claude Berge Centre National de la Recherche Scientifique Paris, France c 2008 by Edward R. Scheinerman and Daniel H. Ullman. This book was originally published by John Wiley & Sons. The copyright has reverted to the authors. Permission is hereby granted for readers to download, print, and copy this book for free so long as this copyright notice is retained. The PDF file for this book can be found here: http://www.ams.jhu.edu/~ers/fgt To Rachel, Sandy, Danny, Jessica, Naomi, Jonah, and Bobby Contents Foreword vii Preface viii 1 General Theory: Hypergraphs 1 1.1 Hypergraph covering and packing 1 1.2 Fractional covering and packing 2 1.3 Some consequences 4 1.4 A game-theoretic approach 5 1.5 Duality and duality 6 1.6 Asymptotic covering and packing 7 1.7 Exercises 12 1.8 Notes 13 2 Fractional Matching 14 2.1 Introduction 14 2.2 Results on maximum fractional matchings 17 2.3 Fractionally Hamiltonian graphs 21 2.4 Computational complexity 26 2.5 Exercises 27 2.6 Notes 28 3 Fractional Coloring 30 3.1 Definitions 30 3.2 Homomorphisms and the Kneser graphs 31 3.3 The duality gap 34 3.4 Graph products 38 3.5 The asymptotic chromatic and clique numbers 41 3.6 The fractional chromatic number of the plane 43 3.7 The Erd˝os-Faber-Lov´asz conjecture 49 3.8 List coloring 51 3.9 Computational complexity 53 3.10 Exercises 54 3.11 Notes
    [Show full text]
  • Entropies, Capacities, and Colorings of Graphs
    CORE Metadata, citation and similar papers at core.ac.uk Provided by REAL-d Entropies, Capacities, and Colorings of Graphs Simonyi G´abor MTA R´enyi Alfr´ed Matematikai Kutat´oint´ezet H-1364 Budapest, Pf. 127. [email protected] Budapest, 2006 Contents Bevezet´es ´es ´attekint´es (Summary in Hungarian) iii 1 Graph Entropies 1 1.1 Entropysplittinghypergraphs . .... 1 1.1.1 Introduction............................... 1 1.1.2 Basicdefinitions............................. 2 1.1.3 Splitting3-uniformhypergraphs . ... 3 1.1.4 The case k 4 ............................. 9 1.1.5 Connectionswithcographs.≥ . 11 1.2 Imperfectionratioandgraphentropy . ..... 13 1.2.1 Somepreliminaries . .. .. 13 1.2.2 An entropy formula for the imperfection ratio . ..... 15 1.2.3 Dilation ratio and entropy of convex corners . ..... 18 1.3 Witsenhausen rate of multiple sources . ...... 22 1.3.1 Introduction............................... 22 1.3.2 Thegraphtheorymodel . 22 1.3.3 Probabilisticgraphinvariants . ... 24 1.3.4 ProofofTheorem1.3.1. 27 2 Graph Capacities 29 2.1 Differentcapacitiesofadigraph . .... 29 2.1.1 Introduction............................... 29 2.1.2 Waterfalls ................................ 33 2.1.3 Independencegraphs . 34 2.1.4 Waterfallsinundirectedgraphs . .. 37 2.1.5 Whenaretheboundstight? . 42 2.2 Orientations of self-complementary graphs and the relation of Sperner and Shannoncapacities ............................... 47 2.2.1 Introduction............................... 47 2.2.2 D(G) versus C(G) ........................... 48 2.2.3 Self-complementarygraphs. 49 2.2.4 Consequences for Sperner capacity . .. 52 i 2.2.5 Furtherremarks............................. 53 2.3 Local chromatic number and Sperner capacity . ...... 55 2.3.1 Introduction............................... 55 2.3.2 Local chromatic number for directed graphs . .... 56 2.3.3 Spernercapacity ...........................
    [Show full text]
  • (Signed) Graph Homomorphism Bound and Hamiltonicity
    NNT : 2016SACLS109 THÈSE DE DOCTORAT DE L’UNIVERSITÉ PARIS-SACLAY PRÉPARÉE À L’UNIVERSITÉ PARIS-SUD LABORATOIRE DE RECHERCHE EN INFORMATIQUE ECOLE DOCTORALE N° 580 Sciences et technologies de l’information et de la communication Spécialité Informatique Par M. Qiang Sun A contribution to the theory of (signed) graph homomorphism bound and Hamiltonicity Thèse présentée et soutenue à Orsay, le 4 mai 2016 : Composition du Jury : Mme Kang, Liying Professeur, Shanghai University Président M. Sopena, Éric Professeur, Université de Bordeaux Rapporteur M. Woźniak, Mariusz Professeur, AGH University of Science and Technology Rapporteur M. Manoussakis, Yannis Professeur, Université Paris-Sud Examinateur M. Li, Hao Directeur de Recherche, CNRS Directeur de thèse M. Naserasr, Reza Chargé de Recherche, CNRS Co-directeur de thèse \When things had been classified in organic categories, knowledge moved toward fulfillness." Confucius (551-479 B.C.), The Great Learning i Acknowledgements First of all, I would like to thank my supervisors Hao Li and Reza Naserasr for giving me the opportunity to work with them. I am grateful that Hao helped me a lot for administrative stuff when I applied my PhD position here. I appreciate that he taught me how to find a research problem and how to solve the problem when you find it. He is very nice to help me not only on works but also on the things of life. I really appreciate his help. I also would like to thank Reza. He taught me how to do research, how to write papers, and how to give a presentation. I am grateful that he patiently explained things that hard to understand in very detail.
    [Show full text]
  • Tight Lower Bounds for the Complexity of Multicoloring
    Tight lower bounds for the complexity of multicoloring∗ Marthe Bonamy† Łukasz Kowalik‡ Michał Pilipczuk‡ Arkadiusz Socała‡ Marcin Wrochna‡ Abstract In the multicoloring problem, also known as (a:b)-coloring or b-fold coloring, we are given a graph G and a set of a colors, and the task is to assign a subset of b colors to each vertex of G so that adjacent vertices receive disjoint color subsets. This natural generalization of the classic coloring problem (the b =1 case) is equivalent to finding a homomorphism to the Kneser graph KGa,b, and gives relaxations approaching the fractional chromatic number. We study the complexity of determining whether a graph has an (a:b)-coloring. Our main result is that this problem does not admit an algorithm with running time f(b)·2o(log b)·n, for any computable f(b), unless the Exponential Time Hypothesis (ETH) fails. A (b+1)n ·poly(n)-time algorithm due to Nederlof [2008] shows that this is tight. A direct corollary of our result is that the graph homomorphism problem does not admit a 2O(n+h) algorithm unless ETH fails, even if the target graph is required to be a Kneser graph. This refines the understanding given by the recent lower bound of Cygan et al. [SODA 2016]. The crucial ingredient in our hardness reduction is the usage of detecting matrices of Lind- ström [Canad. Math. Bull., 1965], which is a combinatorial tool that, to the best of our knowledge, has not yet been used for proving complexity lower bounds. As a side result, we prove that the running time of the algorithms of Abasi et al.
    [Show full text]