SlideShare a Scribd company logo
1 of 15
Greedy is Good
  Greedy Algorithm
Introduction
• Greedy algorithm always makes the choice that
  looks best at the moment, with hoping that a locally
  optimal choice will lead to a global optimum
• Similar to Dynamic Programming, it applies to
  Optimization Problem
• It is usually easy to think up and implement
• Most problems for which they work well have two
  properties
   – Greedy choice property
   – Optimal substructure
Greedy choice property
• Greedy algorithm never reconsiders its choices
• This is main difference from dynamic programming
Optimal substructure
• Optimal solution to the problem contains optimal
  solution to the sub-problems
Activity Selection problem
• Activity Selection problem is to select the maximum
  number of activities that can be performed by a
  single person or machine within a time frame , given
  a set of activities each marked by start time and
  finish time
• Formal definition
   –   number of activity: n
   –   start time of activity i is si
   –   finish time of activity i is fi
   –   non-conflicting activities i and j: si≥fj or sj≥fi
   –   Find the maximum set (S) of non-conflicting activities
Early Finish Greedy
• Activity Selection problem has optimal substructure
   – Assume that activities are sorted by monotonically
     increasing finish time
   – Aij = Aik ∪ {ak} ∪ Akj
• Select the activity with the earliest finish
• Eliminate the activities that are in conflict
• Repeat until there is no remains
Early Finish Greedy
Early Finish Greedy
Early Finish Greedy
Early Finish Greedy
Early Finish Greedy
Early Finish Greedy
Sort the set of activities by finishing time (f[i])
S=1
f = f[1]
for i=1 to n
   if s[i] ≥ f
        S=SUi
        f = f[i]
end for
Cases of failure
• Greedy algorithms don’t always yields on optimal
  solution
• Ex) How can a given amount of money be made with
  the least number of coins of given denominations?
  –   Target amount: 6
  –   Denominations: 1, 3, 4
  –   Greedy solution: (4, 1, 1)
  –   Optimal solution: (3, 3)
Conclusion
• Greedy algorithms are usually easy to think of, easy
  to implement and run fast,
• but it may fail to produce the optimal solution
• Mathematical concepts may give you a recipe for
  proving that a problem can be solved with greedy,
  but it ultimately comes down to the experience of
  the programmer.
References
• http://en.wikipedia.org/wiki/Greedy_algorithm
• http://www.topcoder.com/tc?module=Static&d1=tu
  torials&d2=greedyAlg
• http://security.re.kr/~sjkim/LectureNotes/SKKU/201
  0/CSE3002/Lec13(Alg).pdf

More Related Content

Similar to Greedy is Good

Dynamic programming, Branch and bound algorithm & Greedy algorithms
Dynamic programming, Branch and bound algorithm & Greedy algorithms Dynamic programming, Branch and bound algorithm & Greedy algorithms
Dynamic programming, Branch and bound algorithm & Greedy algorithms
SURBHI SAROHA
 
Module 2ppt.pptx divid and conquer method
Module 2ppt.pptx divid and conquer methodModule 2ppt.pptx divid and conquer method
Module 2ppt.pptx divid and conquer method
JyoReddy9
 

Similar to Greedy is Good (20)

greedy method.pdf
greedy method.pdfgreedy method.pdf
greedy method.pdf
 
Algo_Lecture01.pptx
Algo_Lecture01.pptxAlgo_Lecture01.pptx
Algo_Lecture01.pptx
 
Greedy algorithms
Greedy algorithmsGreedy algorithms
Greedy algorithms
 
Greedy Algorithms WITH Activity Selection Problem.ppt
Greedy Algorithms WITH Activity Selection Problem.pptGreedy Algorithms WITH Activity Selection Problem.ppt
Greedy Algorithms WITH Activity Selection Problem.ppt
 
Analysis and Design of Algorithms
Analysis and Design of AlgorithmsAnalysis and Design of Algorithms
Analysis and Design of Algorithms
 
Dynamic programming, Branch and bound algorithm & Greedy algorithms
Dynamic programming, Branch and bound algorithm & Greedy algorithms Dynamic programming, Branch and bound algorithm & Greedy algorithms
Dynamic programming, Branch and bound algorithm & Greedy algorithms
 
Unit V.pdf
Unit V.pdfUnit V.pdf
Unit V.pdf
 
Greedy algorithm for design and analysis
Greedy algorithm for design and analysisGreedy algorithm for design and analysis
Greedy algorithm for design and analysis
 
Greedy method
Greedy methodGreedy method
Greedy method
 
Algorithm.pptx
Algorithm.pptxAlgorithm.pptx
Algorithm.pptx
 
DynamicProgramming.pptx
DynamicProgramming.pptxDynamicProgramming.pptx
DynamicProgramming.pptx
 
Computational Thinking 11- ActivitySelection.pptx
Computational Thinking 11- ActivitySelection.pptxComputational Thinking 11- ActivitySelection.pptx
Computational Thinking 11- ActivitySelection.pptx
 
GreedyAlgorithms.ppt
GreedyAlgorithms.pptGreedyAlgorithms.ppt
GreedyAlgorithms.ppt
 
GreedyAlgorithms.ppt
GreedyAlgorithms.pptGreedyAlgorithms.ppt
GreedyAlgorithms.ppt
 
Module 2ppt.pptx divid and conquer method
Module 2ppt.pptx divid and conquer methodModule 2ppt.pptx divid and conquer method
Module 2ppt.pptx divid and conquer method
 
Lec07-Greedy Algorithms.pdf Lec07-Greedy Algorithms.pdf
Lec07-Greedy Algorithms.pdf Lec07-Greedy Algorithms.pdfLec07-Greedy Algorithms.pdf Lec07-Greedy Algorithms.pdf
Lec07-Greedy Algorithms.pdf Lec07-Greedy Algorithms.pdf
 
Lecture01.ppt
Lecture01.pptLecture01.ppt
Lecture01.ppt
 
Greedy algorithm
Greedy algorithmGreedy algorithm
Greedy algorithm
 
Algorithms & Complexity Calculation
Algorithms & Complexity CalculationAlgorithms & Complexity Calculation
Algorithms & Complexity Calculation
 
CS8461 - Design and Analysis of Algorithms
CS8461 - Design and Analysis of AlgorithmsCS8461 - Design and Analysis of Algorithms
CS8461 - Design and Analysis of Algorithms
 

More from skku_npc (14)

Maximum Flow
Maximum FlowMaximum Flow
Maximum Flow
 
Computational Complexity
Computational ComplexityComputational Complexity
Computational Complexity
 
String Searching Algorithms
String Searching AlgorithmsString Searching Algorithms
String Searching Algorithms
 
disjoint-set data structures
disjoint-set data structuresdisjoint-set data structures
disjoint-set data structures
 
Line sweep algorithms
Line sweep algorithmsLine sweep algorithms
Line sweep algorithms
 
Data Structures
Data StructuresData Structures
Data Structures
 
Prime numbers, factorization
Prime numbers, factorizationPrime numbers, factorization
Prime numbers, factorization
 
Mathematics
MathematicsMathematics
Mathematics
 
Binary Search
Binary SearchBinary Search
Binary Search
 
How to find a solution
How to find a solutionHow to find a solution
How to find a solution
 
Dynamic programming
Dynamic programmingDynamic programming
Dynamic programming
 
An introduction to recursion
An introduction to recursionAn introduction to recursion
An introduction to recursion
 
Algorithm Games
Algorithm GamesAlgorithm Games
Algorithm Games
 
Introduction to Graphs
Introduction to GraphsIntroduction to Graphs
Introduction to Graphs
 

Recently uploaded

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 

Recently uploaded (20)

Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
Apidays Singapore 2024 - Building Digital Trust in a Digital Economy by Veron...
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024Manulife - Insurer Transformation Award 2024
Manulife - Insurer Transformation Award 2024
 
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
Connector Corner: Accelerate revenue generation using UiPath API-centric busi...
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
Corporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptxCorporate and higher education May webinar.pptx
Corporate and higher education May webinar.pptx
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin WoodPolkadot JAM Slides - Token2049 - By Dr. Gavin Wood
Polkadot JAM Slides - Token2049 - By Dr. Gavin Wood
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?A Year of the Servo Reboot: Where Are We Now?
A Year of the Servo Reboot: Where Are We Now?
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
Emergent Methods: Multi-lingual narrative tracking in the news - real-time ex...
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
Apidays New York 2024 - Accelerating FinTech Innovation by Vasa Krishnan, Fin...
 
Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)Powerful Google developer tools for immediate impact! (2023-24 C)
Powerful Google developer tools for immediate impact! (2023-24 C)
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

Greedy is Good

  • 1. Greedy is Good Greedy Algorithm
  • 2. Introduction • Greedy algorithm always makes the choice that looks best at the moment, with hoping that a locally optimal choice will lead to a global optimum • Similar to Dynamic Programming, it applies to Optimization Problem • It is usually easy to think up and implement • Most problems for which they work well have two properties – Greedy choice property – Optimal substructure
  • 3. Greedy choice property • Greedy algorithm never reconsiders its choices • This is main difference from dynamic programming
  • 4. Optimal substructure • Optimal solution to the problem contains optimal solution to the sub-problems
  • 5. Activity Selection problem • Activity Selection problem is to select the maximum number of activities that can be performed by a single person or machine within a time frame , given a set of activities each marked by start time and finish time • Formal definition – number of activity: n – start time of activity i is si – finish time of activity i is fi – non-conflicting activities i and j: si≥fj or sj≥fi – Find the maximum set (S) of non-conflicting activities
  • 6. Early Finish Greedy • Activity Selection problem has optimal substructure – Assume that activities are sorted by monotonically increasing finish time – Aij = Aik ∪ {ak} ∪ Akj • Select the activity with the earliest finish • Eliminate the activities that are in conflict • Repeat until there is no remains
  • 12. Early Finish Greedy Sort the set of activities by finishing time (f[i]) S=1 f = f[1] for i=1 to n if s[i] ≥ f S=SUi f = f[i] end for
  • 13. Cases of failure • Greedy algorithms don’t always yields on optimal solution • Ex) How can a given amount of money be made with the least number of coins of given denominations? – Target amount: 6 – Denominations: 1, 3, 4 – Greedy solution: (4, 1, 1) – Optimal solution: (3, 3)
  • 14. Conclusion • Greedy algorithms are usually easy to think of, easy to implement and run fast, • but it may fail to produce the optimal solution • Mathematical concepts may give you a recipe for proving that a problem can be solved with greedy, but it ultimately comes down to the experience of the programmer.
  • 15. References • http://en.wikipedia.org/wiki/Greedy_algorithm • http://www.topcoder.com/tc?module=Static&d1=tu torials&d2=greedyAlg • http://security.re.kr/~sjkim/LectureNotes/SKKU/201 0/CSE3002/Lec13(Alg).pdf