0% found this document useful (0 votes)
39 views9 pages

02 Greedy 4 Review

Uploaded by

Abhimanyu singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
39 views9 pages

02 Greedy 4 Review

Uploaded by

Abhimanyu singh
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 9

Greedy Algorithms:

Review
Michael Levin
Higher School of Economics

Algorithmic Design and Techniques


Algorithms and Data Structures
Main Ingredients

Safe move
Prove safety
Solve subproblem
Estimate running time
Safe Moves

Put max digit first


Refill at the farthest reachable gas
station
Cover leftmost point
Use item with maximum value per unit
of weight
Optimization

Assume everything is somehow sorted


Which sort order is convenient?
Greedy move can be faster after sorting
General Strategy

Problem
General Strategy
greedy choice
Problem

Make a greedy choice


General Strategy
greedy choice
Problem Safe move

Make a greedy choice


Prove that it is a safe move
General Strategy
greedy choice
Problem Safe move

Subproblem
Make a greedy choice
Prove that it is a safe move
Reduce to a subproblem
General Strategy
greedy choice
Problem Safe move

Subproblem
Make a greedy choice
Prove that it is a safe move
Reduce to a subproblem
Solve the subproblem

You might also like