0
点赞
收藏
分享

微信扫一扫

LeetCode-646. Maximum Length of Pair Chain [C++][Java]

程序员阿狸 2022-03-14 阅读 51

LeetCode-646. Maximum Length of Pair Chainhttps://leetcode.com/problems/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

解题思路

【C++】

class Solution {
public:
    int findLongestChain(vector<vector<int>>& pairs) {
        if (pairs.empty()) {return 0;}
        auto cmp = [](const vector <int> &a, const vector <int> &b){
            return a[1] < b[1];
        };
        sort(pairs.begin(), pairs.end(), cmp);
        int ans = 1, e = pairs[0][1];
        for (int i = 1; i < pairs.size(); i++) {
            if (pairs[i][0] > e) {
                ans++;
                e = pairs[i][1];
            } else {e = min(e, pairs[i][1]);}
        }
        return ans;
    }
};

【Java】

class Solution {
    public int findLongestChain(int[][] pairs) {
        if (pairs.length == 0 || pairs[0].length == 0) {return 0;}
        Arrays.sort(pairs, (a, b) -> {return a[1] - b[1];});
        int ans = 1, e = pairs[0][1];
        for (int i = 1; i < pairs.length; i++) {
            if (pairs[i][0] > e) {
                ans++;
                e = pairs[i][1];
            } else {e = Math.min(e, pairs[i][1]);}
        }
        return ans;
    }
}

举报

相关推荐

0 条评论