Skip to content

Latest commit

 

History

History
49 lines (39 loc) · 1.35 KB

File metadata and controls

49 lines (39 loc) · 1.35 KB

646. Maximum Length of Pair Chain

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:

  • n == pairs.length
  • 1 <= n <= 1000
  • -1000 <= lefti < righti <= 1000

Solutions (Rust)

1. Solution

impl Solution {
    pub fn find_longest_chain(mut pairs: Vec<Vec<i32>>) -> i32 {
        pairs.sort_unstable_by_key(|p| (p[1], -p[0]));
        let mut right = pairs[0][1];
        let mut ret = 1;

        for i in 1..pairs.len() {
            if pairs[i][0] > right {
                right = pairs[i][1];
                ret += 1;
            }
        }

        ret
    }
}