David Luebke 1 8/23/2015 CS 332: Algorithms Greedy Algorithms.

Slides:



Advertisements
Similar presentations
Introduction to Algorithms
Advertisements

CS 332: Algorithms NP Completeness David Luebke /2/2017.
CS Section 600 CS Section 002 Dr. Angela Guercio Spring 2010.
Greedy Algorithms.
1.1 Data Structure and Algorithm Lecture 6 Greedy Algorithm Topics Reference: Introduction to Algorithm by Cormen Chapter 17: Greedy Algorithm.
Analysis of Algorithms
Greed is good. (Some of the time)
Greedy Algorithms Be greedy! always make the choice that looks best at the moment. Local optimization. Not always yielding a globally optimal solution.
Introduction to Algorithms Jiafen Liu Sept
Dynamic Programming.
David Luebke 1 5/4/2015 CS 332: Algorithms Dynamic Programming Greedy Algorithms.
Review: Dynamic Programming
Lecture 7: Greedy Algorithms II Shang-Hua Teng. Greedy algorithms A greedy algorithm always makes the choice that looks best at the moment –My everyday.
CPSC 411, Fall 2008: Set 4 1 CPSC 411 Design and Analysis of Algorithms Set 4: Greedy Algorithms Prof. Jennifer Welch Fall 2008.
Greedy Algorithms Reading Material: –Alsuwaiyel’s Book: Section 8.1 –CLR Book (2 nd Edition): Section 16.1.
CSE 780 Algorithms Advanced Algorithms Greedy algorithm Job-select problem Greedy vs DP.
Greedy Algorithms CIS 606 Spring Greedy Algorithms Similar to dynamic programming. Used for optimization problems. Idea – When we have a choice.
CS3381 Des & Anal of Alg ( SemA) City Univ of HK / Dept of CS / Helena Wong 5. Greedy Algorithms - 1 Greedy.
1 Foundations of Software Design Lecture 26: Text Processing, Tries, and Dynamic Programming Marti Hearst & Fredrik Wallenberg Fall 2002.
Week 2: Greedy Algorithms
Dynamic Programming 0-1 Knapsack These notes are taken from the notes by Dr. Steve Goddard at
Lecture 7: Greedy Algorithms II
CPSC 411, Fall 2008: Set 4 1 CPSC 411 Design and Analysis of Algorithms Set 4: Greedy Algorithms Prof. Jennifer Welch Fall 2008.
16.Greedy algorithms Hsu, Lih-Hsing. Computer Theory Lab. Chapter 16P An activity-selection problem Suppose we have a set S = {a 1, a 2,..., a.
Called as the Interval Scheduling Problem. A simpler version of a class of scheduling problems. – Can add weights. – Can add multiple resources – Can ask.
Greedy Algorithms Dr. Yingwu Zhu. Greedy Technique Constructs a solution to an optimization problem piece by piece through a sequence of choices that.
1 Summary: Design Methods for Algorithms Andreas Klappenecker.
David Luebke 1 10/24/2015 CS 332: Algorithms Greedy Algorithms Continued.
CSC 413/513: Intro to Algorithms Greedy Algorithms.
Introduction to Algorithms Chapter 16: Greedy Algorithms.
Greedy Methods and Backtracking Dr. Marina Gavrilova Computer Science University of Calgary Canada.
Dynamic Programming continued David Kauchak cs302 Spring 2012.
CSC 201: Design and Analysis of Algorithms Greedy Algorithms.
COSC 3101A - Design and Analysis of Algorithms 8 Elements of DP Memoization Longest Common Subsequence Greedy Algorithms Many of these slides are taken.
Greedy Algorithms. What is “Greedy Algorithm” Optimization problem usually goes through a sequence of steps A greedy algorithm makes the choice looks.
December 14, 2015 Design and Analysis of Computer Algorithm Pradondet Nilagupta Department of Computer Engineering.
David Luebke 1 1/14/2016 CS 332: Algorithms NP Completeness.
Dynamic Programming David Kauchak cs161 Summer 2009.
1 Algorithms CSCI 235, Fall 2015 Lecture 30 More Greedy Algorithms.
Greedy Algorithms BIL741: Advanced Analysis of Algorithms I (İleri Algoritma Çözümleme I)1.
Greedy Algorithms Interval Scheduling and Fractional Knapsack These slides are based on the Lecture Notes by David Mount for the course CMSC 451 at the.
Greedy Algorithms Chapter 16 Highlights
1 Chapter 16: Greedy Algorithm. 2 About this lecture Introduce Greedy Algorithm Look at some problems solvable by Greedy Algorithm.
Greedy Algorithms Analysis of Algorithms.
CS 361 – Chapter 10 “Greedy algorithms” It’s a strategy of solving some problems –Need to make a series of choices –Each choice is made to maximize current.
Data Structures and Algorithms (AT70.02) Comp. Sc. and Inf. Mgmt. Asian Institute of Technology Instructor: Prof. Sumanta Guha Slide Sources: CLRS “Intro.
Greedy Algorithms. Zhengjin,Central South University2 Review: Dynamic Programming Summary of the basic idea: Optimal substructure: optimal solution to.
Divide and Conquer. Problem Solution 4 Example.
A greedy algorithm is an algorithm that follows the problem solving heuristic of making the locally optimal choice at each stage with the hope of finding.
Analysis of Algorithms CS 477/677 Instructor: Monica Nicolescu Lecture 18.
6/13/20161 Greedy A Comparison. 6/13/20162 Greedy Solves an optimization problem: the solution is “best” in some sense. Greedy Strategy: –At each decision.
Analysis of Algorithms CS 477/677 Instructor: Monica Nicolescu Lecture 17.
CS6045: Advanced Algorithms Greedy Algorithms. Main Concept –Divide the problem into multiple steps (sub-problems) –For each step take the best choice.
CS583 Lecture 12 Jana Kosecka Dynamic Programming Longest Common Subsequence Matrix Chain Multiplication Greedy Algorithms Many slides here are based on.
Greedy Algorithms Many of the slides are from Prof. Plaisted’s resources at University of North Carolina at Chapel Hill.
Greedy Algorithms Many of the slides are from Prof. Plaisted’s resources at University of North Carolina at Chapel Hill.
CSCI 58000, Algorithm Design, Analysis & Implementation Lecture 12 Greedy Algorithms (Chapter 16)
Greedy algorithms: CSC317
CSC317 Greedy algorithms; Two main properties:
CSCE 411 Design and Analysis of Algorithms
Review: Dynamic Programming
Greedy Algorithms (Chap. 16)
Presented by Po-Chuan & Chen-Chen 2016/03/08
Algorithm Design Methods
CS6045: Advanced Algorithms
Greedy Algorithms Many optimization problems can be solved more quickly using a greedy approach The basic principle is that local optimal decisions may.
Advanced Algorithms Analysis and Design
Greedy algorithms.
Algorithms CSCI 235, Spring 2019 Lecture 30 More Greedy Algorithms
Advance Algorithm Dynamic Programming
Presentation transcript:

David Luebke 1 8/23/2015 CS 332: Algorithms Greedy Algorithms

David Luebke 2 8/23/2015 Review: Dynamic Programming ● Dynamic programming is another strategy for designing algorithms ● Use when problem breaks down into recurring small subproblems

David Luebke 3 8/23/2015 Review: Optimal Substructure of LCS ● Observation 1: Optimal substructure ■ A simple recursive algorithm will suffice ■ Draw sample recursion tree from c[3,4] ■ What will be the depth of the tree? ● Observation 2: Overlapping subproblems ■ Find some places where we solve the same subproblem more than once

David Luebke 4 8/23/2015 Review: Structure of Subproblems ● For the LCS problem: ■ There are few subproblems in total ■ And many recurring instances of each (unlike divide & conquer, where subproblems unique) ● How many distinct problems exist for the LCS of x[1..m] and y[1..n]? ● A: mn

David Luebke 5 8/23/2015 Memoization ● Memoization is another way to deal with overlapping subproblems ■ After computing the solution to a subproblem, store in a table ■ Subsequent calls just do a table lookup ● Can modify recursive alg to use memoziation: ■ There are mn subproblems ■ How many times is each subproblem wanted? ■ What will be the running time for this algorithm? The running space?

David Luebke 6 8/23/2015 Review: Dynamic Programming ● Dynamic programming: build table bottom-up ■ Same table as memoization, but instead of starting at (m,n) and recursing down, start at (1,1) ● Least Common Subsequence: LCS easy to calculate from LCS of prefixes ○ As your homework shows, can actually reduce space to O(min(m,n)) ● Knapsack problem: we’ll review this in a bit

David Luebke 7 8/23/2015 Review: Dynamic Programming ● Summary of the basic idea: ■ Optimal substructure: optimal solution to problem consists of optimal solutions to subproblems ■ Overlapping subproblems: few subproblems in total, many recurring instances of each ■ Solve bottom-up, building a table of solved subproblems that are used to solve larger ones ● Variations: ■ “Table” could be 3-dimensional, triangular, a tree, etc.

David Luebke 8 8/23/2015 Greedy Algorithms ● A greedy algorithm always makes the choice that looks best at the moment ■ My everyday examples: ○ Walking to the Corner ○ Playing a bridge hand ■ The hope: a locally optimal choice will lead to a globally optimal solution ■ For some problems, it works ● Dynamic programming can be overkill; greedy algorithms tend to be easier to code

David Luebke 9 8/23/2015 Activity-Selection Problem ● Problem: get your money’s worth out of a carnival ■ Buy a wristband that lets you onto any ride ■ Lots of rides, each starting and ending at different times ■ Your goal: ride as many rides as possible ○ Another, alternative goal that we don’t solve here: maximize time spent on rides ● Welcome to the activity selection problem

David Luebke 10 8/23/2015 Activity-Selection ● Formally: ■ Given a set S of n activities s i = start time of activity i f i = finish time of activity i ■ Find max-size subset A of compatible activities n Assume (wlog) that f 1  f 2  …  f n

David Luebke 11 8/23/2015 Activity Selection: Optimal Substructure ● Let k be the minimum activity in A (i.e., the one with the earliest finish time). Then A - {k} is an optimal solution to S’ = {i  S: s i  f k } ■ In words: once activity #1 is selected, the problem reduces to finding an optimal solution for activity- selection over activities in S compatible with #1 ■ Proof: if we could find optimal solution B’ to S’ with |B| > |A - {k}|, ○ Then B U {k} is compatible ○ And |B U {k}| > |A|

David Luebke 12 8/23/2015 Activity Selection: Repeated Subproblems ● Consider a recursive algorithm that tries all possible compatible subsets to find a maximal set, and notice repeated subproblems: S 1  A? S’ 2  A? S-{1} 2  A? S-{1,2}S’’S’-{2}S’’ yesno yes

David Luebke 13 8/23/2015 Greedy Choice Property ● Dynamic programming? Memoize? Yes, but… ● Activity selection problem also exhibits the greedy choice property: ■ Locally optimal choice  globally optimal sol’n ■ Them 17.1: if S is an activity selection problem sorted by finish time, then  optimal solution A  S such that {1}  A ○ Sketch of proof: if  optimal solution B that does not contain {1}, can always replace first activity in B with {1} (Why?). Same number of activities, thus optimal.

David Luebke 14 8/23/2015 Activity Selection: A Greedy Algorithm ● So actual algorithm is simple: ■ Sort the activities by finish time ■ Schedule the first activity ■ Then schedule the next activity in sorted list which starts after previous activity finishes ■ Repeat until no more activities ● Intuition is even more simple: ■ Always pick the shortest ride available at the time

David Luebke 15 8/23/2015 Minimum Spanning Tree Revisited ● Recall: MST problem has optimal substructure ■ Prove it ● Is Prim’s algorithm greedy? Why? ● Is Kruskal’s algorithm greedy? Why?

David Luebke 16 8/23/2015 Review: The Knapsack Problem ● The famous knapsack problem: ■ A thief breaks into a museum. Fabulous paintings, sculptures, and jewels are everywhere. The thief has a good eye for the value of these objects, and knows that each will fetch hundreds or thousands of dollars on the clandestine art collector’s market. But, the thief has only brought a single knapsack to the scene of the robbery, and can take away only what he can carry. What items should the thief take to maximize the haul?

David Luebke 17 8/23/2015 Review: The Knapsack Problem ● More formally, the 0-1 knapsack problem: ■ The thief must choose among n items, where the ith item worth v i dollars and weighs w i pounds ■ Carrying at most W pounds, maximize value ○ Note: assume v i, w i, and W are all integers ○ “0-1” b/c each item must be taken or left in entirety ● A variation, the fractional knapsack problem: ■ Thief can take fractions of items ■ Think of items in 0-1 problem as gold ingots, in fractional problem as buckets of gold dust

David Luebke 18 8/23/2015 Review: The Knapsack Problem And Optimal Substructure ● Both variations exhibit optimal substructure ● To show this for the 0-1 problem, consider the most valuable load weighing at most W pounds ■ If we remove item j from the load, what do we know about the remaining load? ■ A: remainder must be the most valuable load weighing at most W - w j that thief could take from museum, excluding item j

David Luebke 19 8/23/2015 Solving The Knapsack Problem ● The optimal solution to the fractional knapsack problem can be found with a greedy algorithm ■ How? ● The optimal solution to the 0-1 problem cannot be found with the same greedy strategy ■ Greedy strategy: take in order of dollars/pound ■ Example: 3 items weighing 10, 20, and 30 pounds, knapsack can hold 50 pounds ○ Suppose item 2 is worth $100. Assign values to the other items so that the greedy strategy will fail

David Luebke 20 8/23/2015 The Knapsack Problem: Greedy Vs. Dynamic ● The fractional problem can be solved greedily ● The 0-1 problem cannot be solved with a greedy approach ■ As you have seen, however, it can be solved with dynamic programming