26. Maximum Length of Pair Chain
The problem can be found at the following link: Question Link
My Approach
The greedy approch to solve this questiojn is , we can sort the given vector according to their 2nd element . Then we can check if the end value of the first element is less then to start value of the second element . If it is true then we increment our counter and change our current index acoording to end value .
Algorithm
Sort the
pairs
vector in ascending order based on their ending points using thecompare
function. This step ensures that pairs with smaller ending points come first in the sorted vector.Initialize a variable
ans
to 1. This variable will keep track of the length of the longest chain.Initialize a variable
end
to the ending point of the first pair in the sortedpairs
vector.Iterate through the sorted
pairs
vector starting from the second pair (index 1).For each pair at index
i
, get its starting pointsi
and ending pointei
.Check if the starting point
si
of the current pair is greater than the currentend
. If it is, this means that you can add this pair to the chain because it doesn't overlap with the previous pair.If
si
is greater thanend
, increment theans
variable by 1 to extend the chain length, and update theend
variable to beei
(the ending point of the current pair).Continue iterating through the sorted pairs, repeating steps 6-8, until you've processed all pairs.
Time and Auxiliary Space Complexity
Time Complexity:
O(nlogn)
Auxiliary Space Complexity:
O(1)
Code (C++)
Contribution and Support
For discussions, questions, or doubts related to this solution, please visit our discussion section. We welcome your input and aim to foster a collaborative learning environment.
If you find this solution helpful, consider supporting us by giving a ⭐ star
to the rishabhv12/Daily-Leetcode-Solution repository.
Last updated