Maximum Length of Pair Chain
You are givenn
pairs of numbers. In every pair, the first number is always smaller than the second number.
Now, we define a pair(c, d)
can follow another pair(a, b)
if and only ifb < c
. Chain of pairs can be formed in this fashion.
Given a set of pairs, find the length longest chain which can be formed. You needn't use up all the given pairs. You can select pairs in any order.
Example
Note
类似Non-overlapping,这里的重合条件是小于等于,每有一个满足条件就将它从原长度中删去。
Code
Last updated