optimally solving hard combinatorial problems in
play

Optimally Solving Hard Combinatorial Problems in Computational - PowerPoint PPT Presentation

Colorful Components Graph Orientation Optimally Solving Hard Combinatorial Problems in Computational Biology Falk Hffner Institut fr Softwaretechnik und Theoretische Informatik, TU Berlin 7 October 2013 Falk Hffner (TU Berlin)


  1. Colorful Components Graph Orientation Optimally Solving Hard Combinatorial Problems in Computational Biology Falk Hüffner Institut für Softwaretechnik und Theoretische Informatik, TU Berlin 7 October 2013 Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 1/24

  2. Colorful Components Graph Orientation Multiple Sequence Alignment T 1 A 2 C 3 G 4 T 5 A 6 T 1 A 2 G 3 T 4 A 5 T 1 A 2 C 3 G 4 T 5 G 6 A 7 Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 2/24

  3. Colorful Components Graph Orientation Multiple Sequence Alignment T 1 A 2 C 3 G 4 T 5 A 6 T 1 A 2 G 3 T 4 A 5 T 1 A 2 C 3 G 4 T 5 G 6 A 7 Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 2/24

  4. Colorful Components Graph Orientation Multiple Sequence Alignment T 1 A 2 C 3 G 4 T 5 A 6 T 1 A 2 G 3 T 4 A 5 T 1 A 2 C 3 G 4 T 5 G 6 A 7 1 5 2 3 4 1 6 6 6 1 1 2 4 1 5 3 5 7 7 1 1 3 4 2 1 Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 2/24

  5. Colorful Components Graph Orientation Multiple Sequence Alignment ? 1 5 2 3 4 1 6 6 6 1 1 2 4 1 5 3 5 7 7 1 1 3 4 2 1 Idea Use alignment graph constructed by local alignment to reconstruct global alignment. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 2/24

  6. Colorful Components Graph Orientation Multiple Sequence Alignment ? 1 5 2 3 4 1 6 6 6 1 1 2 4 1 5 3 5 7 7 1 1 3 4 2 1 Idea Use alignment graph constructed by local alignment to reconstruct global alignment. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 2/24

  7. Colorful Components Graph Orientation Multiple Sequence Alignment T 1 A 2 C 3 G 4 T 5 A 6 T 1 A 2 G 3 T 4 A 5 T 1 A 2 C 3 G 4 T 5 G 6 A 7 1 5 2 3 4 1 6 6 6 1 1 2 4 1 5 3 5 7 7 1 1 3 4 2 1 Idea Use alignment graph constructed by local alignment to reconstruct global alignment. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 2/24

  8. Colorful Components Graph Orientation Colorful Components Part of a Multiple Sequence Alignment pipeline suggested by Corel, Pitschi & Morgenstern (Bioinformatics 2010). Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 3/24

  9. Colorful Components Graph Orientation Colorful Components Part of a Multiple Sequence Alignment pipeline suggested by Corel, Pitschi & Morgenstern (Bioinformatics 2010). C OLORFUL C OMPONENTS Instance: An undirected graph G = ( V , E ) and a coloring of the vertices χ : V → { 1 , . . . , c } . Task: Delete a minimum number of edges such that all connected components are colorful , that is, they do not contain two vertices of the same color. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 3/24

  10. Colorful Components Graph Orientation Colorful Components Part of a Multiple Sequence Alignment pipeline suggested by Corel, Pitschi & Morgenstern (Bioinformatics 2010). C OLORFUL C OMPONENTS Instance: An undirected graph G = ( V , E ) and a coloring of the vertices χ : V → { 1 , . . . , c } . Task: Delete a minimum number of edges such that all connected components are colorful , that is, they do not contain two vertices of the same color. Other application: Orthologs in multiple genomes: From the set of all pairwise homologies, find disjoint orthology sets of genes. [Zheng, Swenson, Lyons & Sankoff, WABI ’11] Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 3/24

  11. Colorful Components Graph Orientation Complexity of Colorful Components C OLORFUL C OMPONENTS with two colors can be solved in O ( √ nm ) time by matching techniques. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 4/24

  12. Colorful Components Graph Orientation Complexity of Colorful Components C OLORFUL C OMPONENTS with two colors can be solved in O ( √ nm ) time by matching techniques. C OLORFUL C OMPONENTS is NP-hard already with three colors. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 4/24

  13. Colorful Components Graph Orientation Complexity of Colorful Components C OLORFUL C OMPONENTS with two colors can be solved in O ( √ nm ) time by matching techniques. C OLORFUL C OMPONENTS is NP-hard already with three colors. C OLORFUL C OMPONENTS can be approximated by a factor of 4 ln ( c + 1 ) . Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 4/24

  14. Colorful Components Graph Orientation Exact solutions Want to solve C OLORFUL C OMPONENTS exactly: Can interpret solutions within the model; Can differentiate between weaknesses of model and weaknesses of algorithm; Can judge quality of heuristics; Time-limited exact algorithms often give good heuristics. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 5/24

  15. Colorful Components Graph Orientation Fixed-parameter algorithms Idea Find an algorithm that gives optimal solutions and thus has exponential running time, but restrict the combinatorial explosion to a parameter . Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 6/24

  16. Colorful Components Graph Orientation Fixed-parameter algorithms Idea Find an algorithm that gives optimal solutions and thus has exponential running time, but restrict the combinatorial explosion to a parameter . Definition A problem is called fixed-parameter tractable with respect to a parameter k if an instance of size n can be solved in f ( k ) · n O ( 1 ) time for an arbitrary function f . Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 6/24

  17. Colorful Components Graph Orientation Fixed-parameter algorithm Observation C OLORFUL C OMPONENTS can be seen as the problem of destroying by edge deletions all bad paths, that is, simple paths between equally colored vertices. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 7/24

  18. Colorful Components Graph Orientation Fixed-parameter algorithm Observation C OLORFUL C OMPONENTS can be seen as the problem of destroying by edge deletions all bad paths, that is, simple paths between equally colored vertices. Observation Unless the graph is already colorful, we can always find a bad path with at most c edges, where c is the number of colors. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 7/24

  19. Colorful Components Graph Orientation Fixed-parameter algorithm Observation C OLORFUL C OMPONENTS can be seen as the problem of destroying by edge deletions all bad paths, that is, simple paths between equally colored vertices. Observation Unless the graph is already colorful, we can always find a bad path with at most c edges, where c is the number of colors. Theorem C OLORFUL C OMPONENTS can be solved in O ( c k · m ) time, where k is the number of edge deletions. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 7/24

  20. Colorful Components Graph Orientation Improved fixed-parameter algorithm Theorem C OLORFUL C OMPONENTS can be solved in O (( c − 1 ) k · m ) time, where k is the number of edge deletions. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 8/24

  21. Colorful Components Graph Orientation Improved fixed-parameter algorithm Theorem C OLORFUL C OMPONENTS can be solved in O (( c − 1 ) k · m ) time, where k is the number of edge deletions. Proof. If there is a degree-3 or higher vertex v , find a bad path with at most ( c − 1 ) edges by BFS from v . Otherwise, the instance is easy. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 8/24

  22. Colorful Components Graph Orientation Limits of fixed-parameter algorithms Question How much further can we improve this algorithm? Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 9/24

  23. Colorful Components Graph Orientation Limits of fixed-parameter algorithms Question How much further can we improve this algorithm? Theorem C OLORFUL C OMPONENTS with three colors cannot be solved in 2 o ( k ) · n O ( 1 ) unless the Exponential Time Hypothesis is false. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 9/24

  24. Colorful Components Graph Orientation Data reduction Data reduction Let V ′ ⊆ V be a colorful subgraph. If the cut between V ′ and V \ V ′ is at least as large as the connectivity of V ′ , then merge V ′ into a single vertex. Falk Hüffner (TU Berlin) Optimally Solving Hard Combinatorial Problems in Computational Biology 10/24

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