Class Solution
- java.lang.Object
-
- g0601_0700.s0646_maximum_length_of_pair_chain.Solution
-
public class Solution extends Object
646 - Maximum Length of Pair Chain.Medium
You are given an array of
n
pairspairs
wherepairs[i] = [lefti, righti]
andlefti < righti
.A pair
p2 = [c, d]
follows a pairp1 = [a, b]
ifb < c
. A chain of pairs can be formed in this fashion.Return the length longest chain which can be formed.
You do not need to use up all the given intervals. You can select pairs in any order.
Example 1:
Input: pairs = [[1,2],[2,3],[3,4]]
Output: 2
Explanation: The longest chain is [1,2] -> [3,4].
Example 2:
Input: pairs = [[1,2],[7,8],[4,5]]
Output: 3
Explanation: The longest chain is [1,2] -> [4,5] -> [7,8].
Constraints:
n == pairs.length
1 <= n <= 1000
-1000 <= lefti < righti <= 1000
-
-
Constructor Summary
Constructors Constructor Description Solution()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
findLongestChain(int[][] pairs)
-