1 / 43

CSC 172 P, NP, Etc

CSC 172 P, NP, Etc. “Computer Science is a science of abstraction – creating the right model for thinking about a problem and devising the appropriate mechanizable technique to solve it.” Aho & Ullman (1995). The process of abstraction.

ringo
Télécharger la présentation

CSC 172 P, NP, Etc

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. CSC 172 P, NP, Etc

  2. “Computer Science is a science of abstraction – creating the right model for thinking about a problem and devising the appropriate mechanizable technique to solve it.” Aho & Ullman (1995)

  3. The process of abstraction You can solve problems by wiring up special purpose hardware (hand calculator) Turing showed that you could abstract hardware configurations Von Neumann showed that you could abstract away from the hardware (machine languages) High level languages are an abstraction of low level languages (JAVA/C++ rather than SML)

  4. The process of abstraction Data structures are an abstractions in high level languages (“mystack.push(myobject)”) So, now we can talk about solutions to whole problems “Similar” problems with “similar” solutions constitute the next level of abstraction

  5. Hard, Harder, Impossible Some well-formed computational problems don't have computational solution. They are “undecidable”. Trick: liar's paradox: “This sentence is false”. Halts?(x) is a subroutine that is T or F if x (a program) halts or loops. Oops(x) is if Halts?(x) then loop-forever() else halt. Oops(Oops) ??

  6. Some Definitions Exponential time: you have to test every possibility O(kn) Polynomial time: you have some clever algorithm O(nk) Note even n100 is better than exponential

  7. P: A problem that can be solved quickly (in polynomial time) O(nc) NP: A problem whose solution can be checked for correctness in polynomial time. NP-hard: A problem such that every problem in NP reduces to it. (Not in NP) NP-complete (NPC): A problem that is both NP hard and in NP

  8. P: A problem that can be solved quickly (in polynomial time) O(nc) NP: A problem whose solution can be checked for correctness in polynomial time. NP-hard: A problem such that every problem in NP reduces to it. (Not in NP) NP-complete (NPC): A problem that is both NP hard and in NP

  9. The class of problems “P” “P” stands for “Polynomial” The class “P” is the set of problems that have polynomial time solutions Some problems have solutions that run in O(nc) time testing for cycles, MWST, Conn. Comps, shortest path, simple sorting,....

  10. Not in the class of problems “P”? On the other hand, some problems seem to take time that is exponential O(2n) or worse TSP, satisfiability, graph coloring

  11. Famous Examples Travelling Salesman Prob: In undirected weighted graph find path starting and ending at specified vertex, visiting each vertex once, costing <= K. Satisfiability: e.g. what a, b, c, d, e values make (a v b v ~c)^(d v ~a ve)^(~c v b v d)^(c v ~d v e) true? (3-SAT) How many colors needed to color graph vertices so no nbrs have same color? How color (= sudoku)?

  12. Same problem if polynomially reducible Assume I have boolean fn satisfiable(String expression) How do I write tautology(String expression)

  13. Easy Conversion tautology(exp) = no var. assts such that satisfiable(exp) is false.

  14. The class NP “NP” stands for “Nondeterministic Polynomial” Nondeterministic computation: “guess” or “parallelize” A problem can be solved in nondeterministic polynomial time if: given a guess at a solution for some instance of size n we can check that the guess is correct in polynomial time (i.e. the check runs O(nc))

  15. NP takes P time to Check TSP: does path hit all vertices, cost <= K? linear. SAT: evaluate the boolean expression with constant (0,1) values: linear. Colorability: check all edges for diff. colored ends. linear. Hamiltonian Path: path hits all vertices? linear.

  16. P NP NP P P  NP

  17. NPC NPC stands for “NP-complete” Some problems in NP are also in P -they can be solved as well as checked in O(nc) time Others, appear not to be solvable in polynomial time There is no proof that they cannot be solved in polynomial time But, we have the next best thing to such proof A theory that says many of these problems are as hard as any in NP We call these “NP-complete problems”

  18. Not sure? We work to prove equivalence of NPC problems If we could solve one of them in O(nc) time then all would be solvable in polynomial time (P == NP) What do we have? Since the NP-complete problems include many that have been worked on for centuries, there is strong evidence that all NP-complete problems really require exponential time to solve.

  19. Reductions The way a problem is proved NP-complete is to “reduce” a known NP-complete problem to it We reduce a problem A to a problem B by devising a solution that uses only a polynomial amount of time (to convert the data, make the correspondence) plus a call to a method that solves B

  20. Easiest NPC Problem? Partition problem: partition list of integers into 2 parts such that sum(part1) = sum(part2) (3,1,1,2,2,1) -> (1,1,1,2) and (2,3). Version of subset-sum problem (is there a subset of a list of ints that sums to zero?), Also NPC. Very good dynamic program and not bad greedy approaches. hence “easy”.

  21. Back to Graphs By way of example of a class of problems consider Cliques & Independent Sets in graphs

  22. Cliques A complete sub-graph of an undirected graph A set of nodes of some graph that has every possible edge The clique problem: Given a graph G and an integer k, is there a clique of at least k nodes?

  23. Example

  24. Example A B C D E F G H

  25. Example A B C D E F G H

  26. Example K == 4 ABEF CGHD A B C D E F G H

  27. Independent Set Subset S of the nodes of an undirected graph such that there is no edge between any two members of S The independent set problem given a graph G and an integer k, is there an independent set with at least k nodes (Application: scheduling final exams) nodes == courses, edges mean that courses have one student in common. Any guesses on how large the graph would be for UR?

  28. Example independent set K == 2 AC AD AG AH B(D,G,H) Etc.. A B C D E F G H

  29. Checking Solutions Clique, IS, colorability are examples of hard to find solutions “find a clique of n nodes” But, it’s easy (polynomial time) to check a proposed solution.

  30. Checking Check a proposed clique by checking for the existence of the edges between the k nodes Check for an IS by checking for the non-existence of an edge between any two nodes in the proposed set Check a proposed coloring by examining the ends of all the edges in the graph

  31. Checking Check a proposed clique by checking for the existence of the edges between the k nodes Check for an IS by checking for the non-existence of an edge between any two nodes in the proposed set Check a proposed coloring by examining the ends of all the edges in the graph

  32. Same Problem Reductions Clique to IS Given a graph G and an integer k we want to know if there is a clique of size k in G Construct a graph H with the same set of nodes as G and an edge wherever G does not have edges An independent set in H is a clique in G Use the “IS” method on H and return its answer

  33. Same Problem Reductions IS to Clique Given a graph G and an integer k we want to know if there is an IS of size k in G Construct a graph H with the same set of nodes as G and an edge wherever G does not have edges An independent set in H is a clique in G Use the “clique” method on H and return its answer

  34. Example A B C D E G

  35. Example A B C D E G

  36. Example A B C D E G

  37. Example A B D C E G

  38. Example A D C B E G

  39. Example A D C B E G

  40. Example A D C B E G A B C D E G

  41. Hamiltonian cycle from TSPMake complete graph from input graph, give original edges cost 1, added edges cost 2, and if there were K original edges solve TSP for K.

More Related