p and np
play

P and NP Carola Wenk Slides courtesy of Piotr Indyk with small - PowerPoint PPT Presentation

CS3343 -- Fall 2011 P and NP Carola Wenk Slides courtesy of Piotr Indyk with small changes y y g by Carola Wenk 11/29/11 CS 3343 Analysis of Algorithms 1 We have seen so far Algorithms for various problems Running times O( nm 2


  1. CS3343 -- Fall 2011 P and NP Carola Wenk Slides courtesy of Piotr Indyk with small changes y y g by Carola Wenk 11/29/11 CS 3343 Analysis of Algorithms 1

  2. We have seen so far • Algorithms for various problems – Running times O( nm 2 ),O( n 2 ) ,O( n log n ), Running times O( nm ),O( n ) ,O( n log n ), O( n ), etc. – I e polynomial in the input size I.e., polynomial in the input size • Can we solve all (or most of) interesting problems in polynomial time ? problems in polynomial time ? • Not really… 11/29/11 CS 3343 Analysis of Algorithms 2

  3. Example difficult problem p p • Traveling Salesperson T li S l 2 2 Problem (TSP; 4 9 5 optimization variant) optimization variant) 10 8 8 11 11 3 – Input: Undirected graph 6 5 with lengths on edges g g 9 – Output: Shortest tour 7 that visits each vertex exactly once • Best known algorithm: O( 2 ) i O( n 2 n ) time. 11/29/11 CS 3343 Analysis of Algorithms 3

  4. Another difficult problem p • Clique (optimization variant): – Input: Undirected graph G ( V E ) G =( V , E ) – Output: Largest subset C of V such that every pair of vertices such that every pair of vertices in C has an edge between them ( C is called a clique ) • Best known algorithm: O( n 2 n ) time 11/29/11 CS 3343 Analysis of Algorithms 4

  5. What can we do ? • Spend more time designing algorithms for those problems – People tried for a few decades no luck People tried for a few decades, no luck • Prove there is no polynomial time algorithm for those problems – Would be great W ld b – Seems really difficult – Best lower bounds for “natural” problems: – Best lower bounds for natural problems: • Ω ( n 2 ) for restricted computational models • 4.5 n for unrestricted computational models p 11/29/11 CS 3343 Analysis of Algorithms 5

  6. What else can we do ? • Show that those hard problems are essentially equivalent. I.e., if we can solve one of them in polynomial time, then all others can be solved in polynomial time as well. ll • Works for at least 10 000 hard problems 11/29/11 CS 3343 Analysis of Algorithms 6

  7. The benefits of equivalence q • Combines research Combines research efforts • If one problem has a P1 P1 polynomial time l i l ti solution, then all of them do P2 P2 • More realistically: Once an exponential lower bound is shown lower bound is shown for one problem, it P3 holds for all of them 11/29/11 CS 3343 Analysis of Algorithms 7

  8. Summing up g p • If we show that a problem ∏ is equivalent to ten thousand other well studied problems without efficient algorithms then we get a without efficient algorithms, then we get a very strong evidence that ∏ is hard. • We need to: • We need to: – Identify the class of problems of interest – Define the notion of equivalence D fi th ti f i l – Prove the equivalence(s) 11/29/11 CS 3343 Analysis of Algorithms 8

  9. Decision Problem • Decision problems: answer YES or NO. • Example: Search Problem Π Search Π E l S h P bl Given an unsorted set S of n numbers and a number key is key contained in A? key , is key contained in A? • Input is x =(S, key ) • Possible algorithms that solve Π Search ( x ) : Possible algorithms that solve Π Search ( x ) : – A 1 ( x ): Linear search algorithm. O(n) time – A 2 ( x ): Sort the array and then perform binar 2 ( ) y p search. O(n log n) time – A 3 ( x ): Compute all possible subsets of S (2 n many) and check each subset if it contains key many) and check each subset if it contains key. O(n 2 n ) time. 11/29/11 CS 3343 Analysis of Algorithms 9

  10. Decision problem vs. optimization problem optimization problem 3 variants of Clique: 1 1. I Input: Undirected graph G =( V , E ), and an integer k ≥ 0. t U di t d h G ( V E ) d i t k ≥ 0 Output: Does G contain a clique C such that | C | ≥ k ? 2. Input: Undirected graph G =( V , E ) Output: Largest integer k such that G contains a clique C with | C |= k. 3 3. Input: Undirected graph G =( V E ) Input: Undirected graph G ( V , E ) Output: Largest clique C of V. 3 is harder than 2 is harder than 1 So if we reason 3. is harder than 2. is harder than 1. So, if we reason about the decision problem ( 1. ), and can show that it is hard, then the others are hard as well. Also, every algorithm for 3. can solve 2. and 1. as well. 11/29/11 CS 3343 Analysis of Algorithms 10

  11. Decision problem vs. optimization problem (cont ) optimization problem (cont.) Theorem: a) ) If 1. can be solved in polynomial time, then 2. can be solved in p y , polynomial time. l i l i b) If 2. can be solved in polynomial time, then 3. can be solved in polynomial time. Proof: a) Run 1. for values k = 1... n . Instead of linear search one could also do binary search could also do binary search. b) Run 2. to find the size k opt of a largest clique in G . Now check one edge after the other. Remove one edge from g g G, compute the new size of the largest clique in this new graph. If it is still k opt then this edge is not necessary for a clique. If it is less than k opt then it is part of the clique. q p q opt 11/29/11 CS 3343 Analysis of Algorithms 11

  12. Class of problems: NP p • Decision problems: answer YES or NO. E.g.,”is there a tour of length ≤ K ” ? • Solvable in non-deterministic polynomial time: – Intuitively: the solution can be verified in polynomial time l i l ti – E.g., if someone gives us a tour T, we can verify in polynomial time if T is a tour of length verify in polynomial time if T is a tour of length ≤ K . • Therefore the decision variant of TSP is in NP Therefore, the decision variant of TSP is in NP. 11/29/11 CS 3343 Analysis of Algorithms 12

  13. Formal definitions of P and NP • A decision problem ∏ is solvable in polynomial time (or ∏ ∈ P) if there is a polynomial time time (or ∏ ∈ P), if there is a polynomial time algorithm A (.) such that for any input x : ∏ ( x )=YES iff A ( x )=YES • A decision problem ∏ is solvable in non- deterministic polynomial time (or ∏ ∈ NP), if there d t i i ti l i l ti ( ∏ NP) if th is a polynomial time algorithm A (. , .) such that for any input x : ∏ ( x )=YES iff there exists a certificate y of size poly(| x |) such that A ( x , y )=YES 11/29/11 CS 3343 Analysis of Algorithms 13

  14. Examples of problems in NP p p • Is “Does there exist a clique in G of size ≥ K ” in NP ? Yes: A (x ) interprets Yes: A (x, y ) interprets x as a graph G , y as a set C , as a graph G as a set C and checks if all vertices in C are adjacent and if | C | ≥ K • Is Sorting in NP ? No, not a decision problem. • Is “Sortedness” in NP ? Yes: ignore y , and check if the input x is sorted. 11/29/11 CS 3343 Analysis of Algorithms 14

  15. Reductions: ∏ ’ to ∏ ∏ ∏ YES x A for ∏ ∏ NO YES YES x ’ A ’ for ∏ ’ NO NO 11/29/11 CS 3343 Analysis of Algorithms 15

  16. Reductions: ∏ ’ to ∏ ∏ ∏ YES f ( x ’)= x f f A for ∏ ∏ NO YES YES x ’ A ’ for ∏ ’ NO NO 11/29/11 CS 3343 Analysis of Algorithms 16

  17. Reductions • ∏ ’ is polynomial time reducible to ∏ ( ∏ ’ ≤ ∏ ) iff 1. there is a polynomial time function f that maps inputs x ’ for ∏ ’ into inputs x for ∏ , 2. such that for any x ’: 2. such that for any x : ∏ ’( x ’)= ∏ ( f ( x ’)) (or in other words ∏ ’( x ’)=YES iff ∏ ( f ( x ’)=YES) Fact 1: if ∏ ∈ P and ∏ ’ ≤ ∏ then ∏ ’ ∈ P • Fact 2: if ∏ ∈ NP and ∏ ’ ≤ ∏ then ∏ ’ ∈ NP • F t 2 if ∏ NP d ∏ ’ ≤ ∏ th ∏ ’ NP • Fact 3 (transitivity): if ∏ ’’ ≤ ∏ ’ and ∏ ’ ≤ ∏ then ∏ ” ≤ ∏ if ∏ ≤ ∏ and ∏ ≤ ∏ then ∏ ≤ ∏ 11/29/11 CS 3343 Analysis of Algorithms 17

  18. Independent set (IS) p ( ) • Input: Undirected graph G =( V , E ), K • Output: Is there a subset S of V , | S | ≥ K such that no pair of vertices in S has an edge f i i h d between them? ( S is called an independent set ) an independent set ) 11/29/11 CS 3343 Analysis of Algorithms 18

  19. Clique ≤ IS q x ’ • Given an input G =( V , E ), K to Clique, need to construct an input G ’=( V ’ E ’) K ’ to IS input G =( V , E ), K to IS, f(x’)=x such that G has clique of size ≥ K iff G ’ has IS of size ≥ K ’. • Construction: K ’= K , V ’= V , E ’= E • Reason: C is a clique in G iff it i is an IS in G ’s complement. IS i G ’ l 11/29/11 CS 3343 Analysis of Algorithms 19

  20. Recap • We defined a large class of interesting problems, namely NP • We have a way of saying that one problem is not harder than another ( ∏ ’ ≤ ∏ ) ( ∏ ∏ ) • Our goal: show equivalence between hard problems p 11/29/11 CS 3343 Analysis of Algorithms 20

  21. Showing equivalence between difficult problems difficult problems TSP TSP • Options: – Show reductions between all pairs of problems Clique Clique – Reduce the number of reductions using transitivity of “ ≤ ” P3 P4 P5 ∏ ’ ∏ 11/29/11 CS 3343 Analysis of Algorithms 21

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