improved quantum algorithm for triangle finding via
play

Improved Quantum Algorithm for Triangle Finding via Combinatorial - PowerPoint PPT Presentation

Improved Quantum Algorithm for Triangle Finding via Combinatorial Arguments Franois Le Gall Department of Computer Science Graduate School of Information Science and Technology The University of Tokyo QIP 2015 12 January 2015 three


  1. Improved Quantum Algorithm for Triangle Finding via Combinatorial Arguments François Le Gall Department of Computer Science Graduate School of Information Science and Technology The University of Tokyo QIP 2015 12 January 2015

  2. three vertices u, v, w such that ( u, v ) ∈ E Triangle Finding ( u, w ) ∈ E ( v, w ) ∈ E unweighted (and undirected) Given a graph G=(V,E), decide if it contains a triangle

  3. three vertices u, v, w such that ( u, v ) ∈ E Triangle Finding ( u, w ) ∈ E ( v, w ) ∈ E unweighted (and undirected) Given a graph G=(V,E), decide if it contains a triangle v Examples: u w no triangle

  4. three vertices u, v, w such that ( u, v ) ∈ E Triangle Finding ( u, w ) ∈ E ( v, w ) ∈ E unweighted (and undirected) Given a graph G=(V,E), decide if it contains a triangle ★ many algorithmic applications: Boolean matrix multiplication Triangle Finding 3SUM graph-theoretic problems Max2SAT ★ one of “most elementary” unsettled graph-theoretic problems ★ historically, the study of triangle finding has lead to the development of several quantum techniques (“showcase for new quantum techniques”) � n � = Θ ( n 3 ) try all trivial algorithm O ( n 3 ) time 3 Classical algorithms: triples of vertices ( here n = | V | ) best known algorithm O ( n 2.38 ) time reduction to matrix multiplication Trivial quantum algorithm: O ( n 1.5 ) time by quantum search over triples of vertices ˜

  5. Query Complexity of Triangle Finding undirected and unweighted Given a graph G=(V,E), decide if it contains a triangle query complexity of triangle finding number of queries of the form “is ( v 1 , v 2 ) an edge?” needed to solve the problem query complexity = number of queries made time complexity = number of queries + number of other operations � n � = O ( n 2 ) queries are obviously enough 2 trivial lower bounds any classical algorithm requires Ω ( n 2 ) queries any quantum algorithm requires Ω ( n ) queries best known lower bound

  6. Quantum Query Complexity of Triangle Finding Recent lower bound for triangle finding [Belovs, Rosmanis 13]: any quantum algorithm based on (non-adaptive) learning graphs, or Ω ( n 9 / 7 / � also solving weighted versions, must use queries log n ) O ( n 1.3 )- query quantum algorithm using quantum walks [Magniez, Santha, Szegedy 05] ˜ (also solves weighted versions of triangle finding with the same complexity) O ( n 35/27 )- query quantum algorithm using learning graphs [Belovs 12] 35/27=1.296... O ( n 9/7 )- query quantum algorithm using learning graphs [Lee, Magniez, Santha 13] same complexity also obtained by nested quantum walks [Jeffery, Kothari, Magniez 13] 9/7=1.285... O ( n 5/4 )- query quantum algorithm ˜ Our result: Uses combinatorial properties of unweighted graphs, and (standard) quantum walks

  7. Quantum Query Complexity of Triangle Finding Recent lower bound for triangle finding [Belovs, Rosmanis 13]: any quantum algorithm based on (non-adaptive) learning graphs, or Ω ( n 9 / 7 / � also solving weighted versions, must use queries log n ) Our result proves that, in the quantum query complexity setting, unweighted triangle finding is easier than its weighted versions results strongly suggesting similar separations are known in the classical time complexity setting [Czumaj, Lingas 07] [Patrascu 10] [Vassilevska Williams, Williams 09&10] O ( n 5/4 )- query quantum algorithm ˜ Our result: Uses combinatorial properties of unweighted graphs, and (standard) quantum walks

  8. Quantum Walks for Graph Problems subset of size m V : set of vertices of the graph Find a marked m -subset B of V Problem: satisfying some condition (e.g., contains an edge of a triangle) 1 1 Grover search: queries Random sampling: queries � × C √ � × C � = # marked m -subsets C: checking cost (checking if an m -subset B is marked) # m -subsets each node of the Johnson graph represents an m -subset B Quantum walk search over the Johnson graph [Ambainis 04] perform the quantum walk while keeping a data structure D ( B ) for the visited m -subset B (example: D ( B ) = adjacency matrix of the graph induced by B ) C: checking cost S + 1 � √ m × U + C � queries √ � (checking if B is marked given D ( B ) ) S: setup cost (creating the data structure) U: update cost (updating the data structure)

  9. neighbors of u in the graph Triangle Finding: Main Combinatorial Argument ( N ( u ) × N ( u )) ∩ E = ∅ for each u ∈ X Take a random set X ⊆ V of Θ ( √ n log n ) vertices 1. Check if the graph contains a triangle with a vertex in X | X | × | V × V | ) = ˜ � O ( n 5 / 4 ) queries using Grover search O ( check if there exists a triangle 2. If no triangle has been found, � with an edge in ( V × V ) \ S , where S = ( N ( u ) × N ( u )) u ∈ X X N (x 1 ) key property: sparsity x 1 for each ( u, v ) ∈ ( V × V ) \ S there are (w.h.p) at most √ n vertices x 2 u w ∈ V s.t. ( u, w ) ∈ E and ( v, w ) ∈ E ..... instead of n 3 N (x 2 ) v | ( N ( w ) × N ( w )) \ S | ≤ n 2 . 5 w.h.p. � at most √ n vertices w ∈ V

  10. Triangle Finding: Main Combinatorial Argument Take a random set X ⊆ V of Θ ( √ n log n ) vertices 1. Check if the graph contains a triangle with a vertex in X | X | × | V × V | ) = ˜ � O ( n 5 / 4 ) queries using Grover search O ( check if there exists a triangle 2. If no triangle has been found, � with an edge in ( V × V ) \ S , where S = ( N ( u ) × N ( u )) u ∈ X check if ∃ w ∈ V such that ( N ( w ) × N ( w )) \ S contains an edge �� � � = O ( n 5 / 4 ) � � Step 2 can be implemented using � ( N ( w ) × N ( w )) \ S O � w ∈ V queries by Grover search, if each set is known ( N ( w ) × N ( w )) \ S � w.h.p. | ( N ( w ) × N ( w )) \ S | ≤ n 2 . 5 w.h.p. w ∈ V

  11. ② ① Problem with this strategy Similar sparsity arguments have been used in prior works, with similar issues • classical combinatorial algorithms for Boolean matrix multiplication [Bansal, Williams 09] • quantum combinatorial algorithm for Triangle finding [Magniez, Santha, Szegedy 05] Problems: Computing S requires Θ ( | X | × | V | ) = ˜ Θ ( n 1 . 5 ) queries � S = ( N ( u ) × N ( u )) (we would like ˜ O ( n 5 / 4 ) queries) u ∈ X Computing each ( N ( w ) × N ( w )) requires Θ ( | V | ) = Θ ( n ) queries (we would like ˜ O ( n 3 / 4 ) queries) check if ∃ w ∈ V such that ( N ( w ) × N ( w )) \ S contains an edge �� � � = O ( n 5 / 4 ) � � Step 2 can be implemented using � ( N ( w ) × N ( w )) \ S O � w ∈ V queries by Grover search, if each set is known ( N ( w ) × N ( w )) \ S � w.h.p. | ( N ( w ) × N ( w )) \ S | ≤ n 2 . 5 w.h.p. w ∈ V

  12. ② ① Problem with this strategy Problems: Computing S requires Θ ( | X | × | V | ) = ˜ Θ ( n 1 . 5 ) queries � S = ( N ( u ) × N ( u )) (we would like ˜ O ( n 5 / 4 ) queries) u ∈ X Computing each ( N ( w ) × N ( w )) requires Θ ( | V | ) = Θ ( n ) queries (we would like ˜ O ( n 3 / 4 ) queries) check if ∃ w ∈ V such that ( N ( w ) × N ( w )) \ S contains an edge �� � � = O ( n 5 / 4 ) � � Step 2 can be implemented using � ( N ( w ) × N ( w )) \ S O � w ∈ V queries by Grover search, if each set is known ( N ( w ) × N ( w )) \ S Step 2 can be implemented, using quantum walks, without (completely) constructing these sets

  13. ② ① Solution: our quantum algorithm Current approach check if ∃ w ∈ V such that Grover ( N ( w ) × N ( w )) \ S contains an edge Grover Problems for exploiting the sparsity: Computing S e ffi ciently Computing each ( N ( w ) × N ( w )) e ffi ciently First (incomplete) solution check if ∃ w ∈ V such that Grover ∃ B ⊆ V of size | B | = √ n such that Q. walk with data structure D ( B )= N ( w ) ∩ B (( N ( w ) ∩ B ) × ( N ( w ) ∩ B )) \ ( S ∩ ( B × B )) contains an edge Grover known: this solves problem ② S ∩ ( B × B ) problem ① remains: how to compute ?

  14. Final algorithm check if ∃ A ⊆ V of size | A | = n 3 / 4 such that Q. walk with data structure D ( A ) = S ∩ ( A × A ) ∃ w ∈ V such that Grover ∃ B ⊆ A of size | B | = √ n such that Q. walk with data structure D ( B )= N ( w ) ∩ B (( N ( w ) ∩ B ) × ( N ( w ) ∩ B )) \ ( S ∩ ( B × B )) contains an edge Grover known, since known S ∩ ( B × B ) ⊆ S ∩ ( A × A ) this solves problem ① First (incomplete) solution check if ∃ w ∈ V such that Grover ∃ B ⊆ V of size | B | = √ n such that Q. walk with data structure D ( B )= N ( w ) ∩ B (( N ( w ) ∩ B ) × ( N ( w ) ∩ B )) \ ( S ∩ ( B × B )) contains an edge Grover known: this solves problem ② S ∩ ( B × B ) problem ① remains: how to compute ?

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend