Algorithms and Data Structures Lecture XV

Slides:



Advertisements
Similar presentations
P, NP, NP-Complete Problems
Advertisements

Introduction to Algorithms NP-Complete
NP-Hard Nattee Niparnan.
December 3, Algorithms and Data Structures Lecture XV Simonas Šaltenis Nykredit Center for Database Research Aalborg University
November 7, Algorithms and Data Structures Lecture XV Simonas Šaltenis Nykredit Center for Database Research Aalborg University
Lecture # 38 Algorithms & Problem Solving: How Hard Can it Get?
1 The Limits of Computation Intractable and Non-computable functions.
The Theory of NP-Completeness
1 NP-Complete Problems. 2 We discuss some hard problems:  how hard? (computational complexity)  what makes them hard?  any solutions? Definitions 
The Theory of NP-Completeness
P, NP and more.
CSE 326: Data Structures NP Completeness Ben Lerner Summer 2007.
Analysis of Algorithms CS 477/677
Chapter 11: Limitations of Algorithmic Power
1.1 Chapter 1: Introduction What is the course all about? Problems, instances and algorithms Running time v.s. computational complexity General description.
Chapter 11 Limitations of Algorithm Power. Lower Bounds Lower bound: an estimate on a minimum amount of work needed to solve a given problem Examples:
CSCE350 Algorithms and Data Structure
Computational Complexity Polynomial time O(n k ) input size n, k constant Tractable problems solvable in polynomial time(Opposite Intractable) Ex: sorting,
1 The Theory of NP-Completeness 2012/11/6 P: the class of problems which can be solved by a deterministic polynomial algorithm. NP : the class of decision.
Nattee Niparnan. Easy & Hard Problem What is “difficulty” of problem? Difficult for computer scientist to derive algorithm for the problem? Difficult.
Complexity Classes (Ch. 34) The class P: class of problems that can be solved in time that is polynomial in the size of the input, n. if input size is.
Chapter 7 Inefficiency and Intractability CS 345 Spring Quarter, 2014.
Tonga Institute of Higher Education Design and Analysis of Algorithms IT 254 Lecture 8: Complexity Theory.
Complexity A decidable problem is computationally solvable. But what resources are needed to solve the problem? –How much time will it require? –How much.
CSE 024: Design & Analysis of Algorithms Chapter 9: NP Completeness Sedgewick Chp:40 David Luebke’s Course Notes / University of Virginia, Computer Science.
1 Lower Bounds Lower bound: an estimate on a minimum amount of work needed to solve a given problem Examples: b number of comparisons needed to find the.
December 4, Algorithms and Data Structures Lecture XV Simonas Šaltenis Aalborg University
CSCI 3160 Design and Analysis of Algorithms Tutorial 10 Chengyu Lin.
1 The Theory of NP-Completeness 2 Cook ’ s Theorem (1971) Prof. Cook Toronto U. Receiving Turing Award (1982) Discussing difficult problems: worst case.
1 Chapter 34: NP-Completeness. 2 About this Tutorial What is NP ? How to check if a problem is in NP ? Cook-Levin Theorem Showing one of the most difficult.
Fundamentals of Informatics Lecture 14 Intractability and NP-completeness Bas Luttik.
David Evans CS200: Computer Science University of Virginia Computer Science Lecture 15: Intractable Problems (Smiley.
CS6045: Advanced Algorithms NP Completeness. NP-Completeness Some problems are intractable: as they grow large, we are unable to solve them in reasonable.
Young CS 331 D&A of Algo. NP-Completeness1 NP-Completeness Reference: Computers and Intractability: A Guide to the Theory of NP-Completeness by Garey and.
1 Ch 10 - NP-completeness Tractable and intractable problems Decision/Optimization problems Deterministic/NonDeterministic algorithms Classes P and NP.
1 Computability Tractable, Intractable and Non-computable functions.
1 1. Which of these sequences correspond to Hamilton cycles in the graph? (a) (b) (c) (d) (e)
David Evans CS200: Computer Science University of Virginia Computer Science Lecture 23: Intractable Problems (Smiley Puzzles.
1 The Theory of NP-Completeness 2 Review: Finding lower bound by problem transformation Problem X reduces to problem Y (X  Y ) iff X can be solved by.
CSC 172 P, NP, Etc.
The Theory of NP-Completeness
The NP class. NP-completeness
Hard Problems Introduction to NP
Lecture 22 Complexity and Reductions
NP-Completeness Yin Tat Lee
Intro to Theory of Computation
Analysis and design of algorithm
Chapter 1: Introduction
ICS 353: Design and Analysis of Algorithms
Class 14: Intractable Problems CS150: Computer Science
Intro to Theory of Computation
Richard Anderson Lecture 25 NP-Completeness
Chapter 34: NP-Completeness
1. for (i=0; i < n; i+=2) if (A[i] > A[i+1]) swap(A[i], A[i+1])
Chapter 11 Limitations of Algorithm Power
Chapter 34: NP-Completeness
NP-Completeness Yin Tat Lee
NP-Completeness Reference: Computers and Intractability: A Guide to the Theory of NP-Completeness by Garey and Johnson, W.H. Freeman and Company, 1979.
P, NP and NP-Complete Problems
What is Computer Science About? Part 2: Algorithms
NP-Completeness Lecture for CS 302.
P, NP and NP-Complete Problems
The Polynomial Hierarchy Enumeration Problems 7.3.3
CSC 380: Design and Analysis of Algorithms
Major Design Strategies
Algorithms CSCI 235, Spring 2019 Lecture 36 P vs
Our old list of problems
RAIK 283 Data Structures & Algorithms
Major Design Strategies
Lecture 22 Complexity and Reductions
Presentation transcript:

Algorithms and Data Structures Lecture XV Simonas Šaltenis Nykredit Center for Database Research Aalborg University simas@cs.auc.dk November 7, 2002

This Lecture Tractable and intractable alg. Problems What is a ”reasonable” running time? NP problems, examples NP-complete problems and polynomial reducability What have we learned? November 7, 2002

Towers of Hanoi Goal: transfer all n disks from peg A to peg C Rules: move one disk at a time never place larger disk above smaller one Recursive solution: transfer n - 1 disks from A to B move largest disk from A to C transfer n - 1 disks from B to C Total number of moves: T(n) = 2T(n - 1) + 1 November 7, 2002

Towers of Hanoi (2) Recurrence relation: T(n) = 2 T(n - 1) + 1 T(1) = 1 Solution by repeated substitution: T(n) = 2 (2 T(n - 2) + 1) + 1 = = 4 T(n - 2) + 2 + 1 = = 4 (2 T(n - 3) + 1) + 2 + 1 = = 8 T(n - 3) + 4 + 2 + 1 = ... = 2i T(n - i) + 2i-1 +2i-2 +...+21 +20 the expansion stops (n - i = 1) when i = n - 1 T(n) = 2n – 1 + 2n – 2 + 2n – 3 + ... + 21 + 20 November 7, 2002

Towers of Hanoi (3) This is a geometric series, so that we have T(n) = 2n - 1 = O(2n) The running time of this algorithm is exponential (kn) rather than polynomial (nk) Good or bad news? the Induist priests were confronted with a tower problem of 64 rings... assuming one could move 1 million rings per second, it would take half a million years to complete the process... One move per second = 585 billion years! November 7, 2002

Monkey Puzzle Are such long running times linked to the size of the solution of an algorithm? No! To show that, we in the following consider only TRUE/FALSE or yes/no problems – decision problems Nine square cards with imprinted “monkey halves” The goal is to arrange the cards in 3x3 square with matching halves... November 7, 2002

More Monkey... Assumption: orientation is fixed Does any MxM arrangement exist that fulfills the matching criterion? Brute-force algorithm would take n! times to verify whether a solution exists assuming n = 25, it would take 490 billion years on a one-million-per- second arrangements computer to verify whether a solution exists November 7, 2002

Monkey (3) Improving the algorithm discarding partial arrangements etc. A smart algorithm would still take a couple of thousand years in the worst case Is there an easier way to find solutions? MAYBE! But nobody has found them, yet! (room for smart students...) November 7, 2002

Reasonable vs. Unreasonable Number of microseconds since “Big-Bang” November 7, 2002

Reasonable vs. Unreasonable function/ n 10 20 50 100 300 n2 1/10,000 second 1/2,500 second 1/400 second 1/100 second 9/100 second n5 1/10 second 3.2 seconds 5.2 minutes 2.8 hours 28.1 days 2n 1/1000 second 1 second 35.7 years 400 trillion centuries a 75 digit-number of centuries nn 2.8 hours 3.3 trillion years a 70 digit-number of centuries a 185 digit-number of centuries a 728 digit-number of centuries Polynomial Exponential November 7, 2002

Reasonable vs. Unreasonable ”Good”, reasonable algorithms algorithms bound by a polynomial function nk Tractable problems ”Bad”, unreasonable algorithms algorithms whose running time is above nk Intractable problems intractable problems tractable problems problems not admitting reasonable algorithms problems admitting reasonable (polynomial-time) algorithms November 7, 2002

So What! Computers become faster every day insignificant (a constant) compared to exp. running time Maybe the Monkey puzzle is just one specific problem, we could simply ignore the monkey puzzle falls into a category of problems called NPC (NP complete) problems (~1000 problems) all admit unreasonable solutions not known to admit reasonable ones… November 7, 2002

Traveling Salesman Problem A traveling salesperson needs to visit n cities Is there a route of at most d length? (decision problem) Optimization-version asks to find a shortest cycle visiting all vertices once in a weighted graph November 7, 2002

TSP Algorithms Naive solutions take n! time in worst-case, where n is the number of edges of the graph No polynomial-time algorithms are known TSP is an NP-complete problem Longest Path problem between A and B in a weighted grapah is also NP-complete Remember the running time for the shortest path problem November 7, 2002

Coloring Problem (COLOR) given a planar map, can it be colored using 3 colors so that no adjacent regions have the same color Find an error! => November 7, 2002

Coloring Problem (2) NO instance Impossible to 3-color Nevada and bordering states! November 7, 2002

Coloring Problem (3) Any map can be 4-colored Maps that contain no points that are the junctions of an odd number of states can be 2-colored No polynomial algorithms are known to determine whether a map can be 3-colored – it’s an NP-complete problem November 7, 2002

Determining Truth (SAT) Determine the truth or falsity of logical sentences in a simple logical formalism called propositional calculus Using the logical connectives (&-and, Ú-or, ~-not, ®-implies) we compose expressions such as the following ~(E ® F) & (F Ú (D ® ~E)) The algorithmic problem calls for determining the satisfiability of such sentences e.g., E = true, D and F = false November 7, 2002

Determining Truth (SAT) Exponential time algorithm on n = the number of distinct elementary assertions (O(2n)) Best known solution, problem is in NP-complete class! November 7, 2002

CLIQUE Given n people and their pairwise relationships, is there a group of s people such that every pair in the group knows each other people: a, b, c, …, k friendships: (a,e), (a,f),… clique size: s = 4? YES, {b, d, i, h} is a certificate! November 7, 2002

P Definition of P: Examples: Set of all decision problems solvable in polynomial time on a deterministic Turing machine Examples: SHORTEST PATH: Is the shortest path between u and v in a graph shorter than k? RELPRIME: Are the integers x and y relatively prime? YES: (x, y) = (34, 39). MEDIAN: Given integers x1 , …, xn , is the median value < M? YES: (M, x1 , x2 , x3 , x4 , x5 ) = (17, 2, 5, 17, 22, 104) November 7, 2002

P (2) P is the set of all decision problems solvable in polynomial time on REAL computers. November 7, 2002

Short Certificates To find a solution for an NPC problem, we seem to be required to try out exponential amounts of partial solutions Failing in extending a partial solution requires backtracking However, once we found a solution, convincing someone of it is easy, if we keep a proof, i.e., a certificate The problem is finding an answer (exponential), but not verifying a potential solution (polynomial) November 7, 2002

Short Certificates (2) November 7, 2002

On Magic Coins and Oracles Assume we use a magic coin in the backtracking algorithm whenever it is possible to extend a partial solutions in ”two” ways, we perform a coin toss (two monkey cards, next truth assignment, etc.) the outcome of this ”act” determines further actions – we use magical insight, supernatural powers! Such algorithms are termed ”non-deterministic” they guess which option is better, rather than employing some deterministic procedure to go through the alternatives November 7, 2002

NP Definition of NP: Useful alternative definition Set of all decision problems solvable in polynomial time on a NONDETERMINISTIC Turing machine Definition important because it links many fundamental problems Useful alternative definition Set of all decision problems with efficient verification algorithms efficient = polynomial number of steps on deterministic TM Verifier: algorithm for decision problem with extra input November 7, 2002

NP (2) NP = set of decision problems with efficient verification algorithms Why doesn’t this imply that all problems in NP can be solved efficiently? BIG PROBLEM: need to know certificate ahead of time real computers can simulate by guessing all possible certificates and verifying naïve simulation takes exponential time unless you get "lucky" November 7, 2002

NP-Completeness Informal definition of NP-hard: A problem with the property that if it can be solved efficiently, then it can be used as a subroutine to solve any other problem in NP efficiently NP-complete problems are NP problems that are NP-hard ”Hardest computational problems” in NP November 7, 2002

NP-Completeness (2) Each NPC problem’s faith is tightly coupled to all the others (complete set of problems) Finding a polynomial time algorithm for one NPC problem would automatically yield a polynomial time algorithm for all NP problems Proving that one NP-complete problem has an exponential lower bound woud automatically proove that all other NP-complete problems have exponential lower bounds November 7, 2002

NP-Completeness (3) How can we prove such a statement? Polynomial time reduction! given two problems it is an algorithm running in polynomial time that reduces one problem to the other such that given input X to the first and asking for a yes/no answer we transform X into input Y to the second problem such that its answer matches the answer of the first problem November 7, 2002

Reduction Example Reduction is a general technique for showing that one problem is harder (easier) than another For problems A and B, we can often show: if A can be solved efficiently, then so can B In this case, we say B reduces to A (B is "easier" than A, or, B cannot be ”worse” than A) November 7, 2002

Redcution Example (2) SAT reduces to CLIQUE Given any input to SAT, we create a corresponding input to CLIQUE that will help us solve the original SAT problem Specifically, for a SAT formula with K clauses, we construct a CLIQUE input that has a clique of size K if and only if the original Boolean formula is satisfiable If we had an efficient algorithm for CLIQUE, we could apply our transformation, solve the associated CLIQUE problem, and obtain the yes/no answer for the original SAT problem November 7, 2002

Reduction Example (3) SAT reduces to CLIQUE Associate a person to each variable occurrence in each clause November 7, 2002

Reduction Example (4) SAT reduces to CLIQUE Associate a person to each variable occurrence in each clause ”Two people” know each other except if: they come from the same clause they represent t and t’ for some variable t November 7, 2002

Reduction Example (5) SAT reduces to CLIQUE Two people know each other except if: they come from the same clause they represent t and t’ for some variable t Clique of size 4 Þ satisfiable assignment set variable in clique to ”true” (x, y, z) = (true, true, false) November 7, 2002

Reduction Example (6) SAT reduces to CLIQUE Two people know each other except if: they come from the same clause they represent t and t’ for some variable t Clique of size 4 Þ satisfiable assignment Satisfiable assignment Þ clique of size 4 (x, y, z) = (false, false, true) choose one true literal from each clause November 7, 2002

CLIQUE is NP-complete CLIQUE is NP-complete CLIQUE is in NP SAT is in NP-complete SAT reduces to CLIQUE Hundreds of problems can be shown to be NP-complete that way… November 7, 2002

The Start… The World’s first NP-complete problem SAT is NP-complete. (Cook-Levin, 1960’s) November 7, 2002

The Main Question Does P = NP? Is the original DECISION problem as easy as VERIFICATION? Most important open problem in theoretical computer science. Clay institute of mathematics offers one-million dolar prize! November 7, 2002

The Main Question (2) If P=NP, then: If no, then: Efficient algorithms for 3- COLOR, TSP, and factoring. Cryptography is impossible on conventional machines Modern banking system will collapse If no, then: Can’t hope to write efficient algorithm for TSP see NP- completeness But maybe efficient algorithm still exists for testing the primality of a number – i.e., there are some problems that are NP, but not NP-complete November 7, 2002

The Main Question (3) Probably no, since: But maybe yes, since: Thousands of researchers have spent four decades in search of polynomial algorithms for many fundamental NP-complete problems without success Consensus opinion: P ¹ NP But maybe yes, since: No success in proving P ¹ NP either November 7, 2002

Dealing with NP-Completeness Hope that a worst case doesn’t occur Complexity theory deals with worst case behavior. The instance(s) you want to solve may be "easy" TSP where all points are on a line or circle 13,509 US city TSP problem solved (Cook et. al., 1998) Change the problem Develop a heuristic, and hope it produces a good solution. Design an approximation algorithm: algorithm that is guaranteed to find a high- quality solution in polynomial time active area of research, but not always possible Keep trying to prove P = NP. November 7, 2002

The Big Picture Summarizing: it is not known whether NP problems are tractable or intractable But, there exist provably intractable problems Even worse – there exist problems with running times unimaginably worse than exponential! More bad news: there are provably noncomputable (undecidable) problems There are no (and there will not ever be!!!) algorithms to solve these problems November 7, 2002

The Course Toolbox of algorithmic techniques Analysis of algorithms: Divide and Conquer (Merge sort, Quicksort, Binary search, Closest pair) Dynamic programming (Matrix chain multiplication, Longest Common Subsequence) Greedy algorithms (Prim’s, Kruskal’s, Dijkstra’s) Sweeping in computational geometry Analysis of algorithms: Correctness of algorithm Asymptotic notations Recurrences November 7, 2002

The Course (2) Building algorithms - concept of ADT Toolbox of data structures: Simple data structures (array, all sorts of linked lists, stacks, queues, trees, heaps) Dictionaries (fast data access) binary trees (unbalanced) red-black trees November 7, 2002

The Course (3) Toolbox of algorithms: Sorting Graphs insertion sort, selection sort merge sort quick sort heap sort (priority queues) Graphs memory representation graph traversal breadth-first search depth-first search (topological sort) minimum spanning trees (Prim, Kruskal) shortest path (Dijkstra, Bellman-Ford) November 7, 2002

The Course (4) Toolbox of algorithms: Complexity classes Computational Geometry sweep line line segment intersections closest pairs Complexity classes what’s good and what’s not NP-completeness reducibility and examples November 7, 2002