Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by Prashant Basnet
Prashant Basnet, a software engineer at Unisala.com, focuses on software development and enjoys building platforms to share knowledge. Interested in system design, data structures, and is currently learning NLP
Greedy algorithms:
The class of algorithms that make locally optimal choices at each step with the hope that these choices will lead to a globally optimal solution. They are particularly useful for optimization problems where you want to find the best solution among many possible ones.
Key Characteristics of Greedy Problems:
Categorizing Problems Under the Greedy Bucket:
To determine if a problem can be solved using a greedy approach, ask yourself:
Now, let's categorize each of the given problems under the greedy bucket based on these criteria.
When to Use Greedy?
✅ Optimal Substructure: The best solution at step i depends only on step i-1.
✅ Greedy Choice Property: A locally optimal choice leads to a global optimum.
❌ No Backtracking Needed: If future choices don’t invalidate past decisions.
Step-by-Step Framework to Identify Greedy Problems
🔹 Step 1: Is It an Optimization Problem?
Look for keywords:
Example:
🔹 Step 2: Can You Make Locally Optimal Choices?
Ask:
Test Case:
🔹 Step 3: Is There a Clear Heuristic?
Common Greedy Rules:
Example:
🔹 Step 4: Can You Solve It in a Single Pass?
Greedy Hallmark:
Example:
🔹 Step 5: Match Known Greedy Patterns
🔹 Step 6: Rule Out DP/Backtracking
Ask:
Example:
📌 Final Checklist (Is It Greedy?)
If all 4 are true → Greedy!
Example Walkthrough: "Partition Labels"
Conclusion: Greedy!
🚀 When Greedy Fails (Red Flags)
Summary Flowchart
Practice Problem
Problem: "Given intervals, find the minimum number of intervals to remove to make the rest non-overlapping."
Apply the framework:
Verdict: Greedy!
Maximum Subarray
Given an array of integers nums, find the subarray with the largest sum and return the sum.
A subarray is a contiguous non-empty sequence of elements within an array.
Example 1:
Explanation: The subarray [4,-2,2,1,-1,4] has the largest sum 8.
Example 2:
Jump Game
You are given an integer array nums where each element nums[i] indicates your maximum jump length at that position.
Return true if you can reach the last index starting from index 0, or false otherwise.
Example 1:
Explanation: First jump from index 0 to 1, then from index 1 to 3, and lastly from index 3 to 4.
Example 2:
Jump Game II
You are given an array of integers nums, where nums[i] represents the maximum length of a jump towards the right from index i. For example, if you are at nums[i], you can jump to any index i + j where:
You are initially positioned at nums[0].
Return the minimum number of jumps to reach the last position in the array (index nums.length - 1). You may assume there is always a valid answer.
Example 1:
Explanation: Jump from index 0 to index 1, then jump from index 1 to the last index.
Example 2:
Gas Station
There are n gas stations along a circular route. You are given two integer arrays gas and cost where:
You have a car that can store an unlimited amount of gas, but you begin the journey with an empty tank at one of the gas stations.
Return the starting gas station's index such that you can travel around the circuit once in the clockwise direction. If it's impossible, then return -1.
It's guaranteed that at most one solution exists.
Example 1:
Explanation: Start at station 3 (index 3) and fill up with 4 unit of gas.
Your tank = 0 + 4 = 4
Travel to station 0. Your tank = 4 - 1 + 1 = 3
Travel to station 1. Your tank = 3 - 2 + 2 = 3
Travel to station 2. Your tank = 3 - 2 + 3 = 4
Travel to station 3. Your tank = 2 - 4 + 4 = 2
Example 2:
Explanation:
You can't start at station 0 or 1, since there isn't enough gas to travel to the next station.
If you start at station 2, you can move to station 0, and then station 1.
At station 1 your tank = 0 + 3 - 2 + 1 - 2 = 0.
You're stuck at station 1, so you can't travel around the circuit.
Hand of Straights
You are given an integer array hand where hand[i] is the value written on the ith card and an integer groupSize.
You want to rearrange the cards into groups so that each group is of size groupSize, and card values are consecutively increasing by 1.
Return true if it's possible to rearrange the cards in this way, otherwise, return false.
Example 1:
Explanation: The cards can be rearranged as [1,2,3,4] and [2,3,4,5].
Example 2:
Explanation: The closest we can get is [1,2,3,4] and [3,5,6,7], but the cards in the second group are not consecutive.
Merge Triplets to Form Target
You are given a 2D array of integers triplets, where triplets[i] = [ai, bi, ci] represents the ith triplet. You are also given an array of integers target = [x, y, z] which is the triplet we want to obtain.
To obtain target, you may apply the following operation on triplets zero or more times:
Choose two different triplets triplets[i] and triplets[j] and update triplets[j] to become [max(ai, aj), max(bi, bj), max(ci, cj)].
* E.g. if triplets[i] = [1, 3, 1] and triplets[j] = [2, 1, 2], triplets[j] will be updated to [max(1, 2), max(3, 1), max(1, 2)] = [2, 3, 2].
Return true if it is possible to obtain target as an element of triplets, or false otherwise.
Example 1:
Explanation:
Choose the first and second triplets, update the second triplet to be [max(1, 7), max(2, 1), max(3, 1)] = [7, 2, 3].
Example 2:
Partition Labels
You are given a string s consisting of lowercase english letters.
We want to split the string into as many substrings as possible, while ensuring that each letter appears in at most one substring.
Return a list of integers representing the size of these substrings in the order they appear in the string.
Example 1:
Explanation: The string can be split into ["xyxxy", "zbzbb", "i", "s", "l"].
Example 2:
Valid Parenthesis String
You are given a string s which contains only three types of characters: '(', ')' and '*'.
Return true if s is valid, otherwise return false.
A string is valid if it follows all of the following rules:
Example 1:
Explanation: One of the '*' could be a ')' and the other could be an empty string.
Example 2:
Explanation: The string is not valid because there is an extra '(' at the beginning, regardless of the extra '*'.