646. Maximum Length of Pair Chain

Difficulty:
Related Topics:
Similar Questions:

Problem

You are given an array of n pairs pairs where pairs[i] = [lefti, righti] and lefti < righti.

A pair p2 = [c, d] follows a pair p1 = [a, b] if b < 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:

Solution

/**
 * @param {number[][]} pairs
 * @return {number}
 */
var findLongestChain = function(pairs) {
    pairs.sort((a, b) => a[0] - b[0]);
    var dp = Array(pairs.length);
    for (var i = pairs.length - 1; i >= 0; i--) {
        var j = i + 1;
        while (j < pairs.length && pairs[j][0] <= pairs[i][1]) j++;
        dp[i] = Math.max(
            dp[i + 1] || 0,
            1 + (dp[j] || 0),
        );
    }
    return dp[0];
};

Explain:

Dynamic programming.

Complexity:

Solution 2

/**
 * @param {number[][]} pairs
 * @return {number}
 */
var findLongestChain = function(pairs) {
    pairs.sort((a, b) => a[1] - b[1]);
    var res = 1;
    var i = 0;
    for (var j = 0; j < pairs.length; j++) {
        if (pairs[j][0] > pairs[i][1]) {
            i = j;
            res++;
        }
    }
    return res;
};

Explain:

Greedy.

Complexity: