source: https://leetcode.com/problems/maximum-length-of-pair-chain/description/
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].
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 |
class Solution { public int findLongestChain(int[][] pairs) { Arrays.sort(pairs, (a,b)-> Integer.compare(a[0],b[0])); int[][] memo = new int[pairs.length][pairs.length]; for(int[] m: memo) Arrays.fill(m, -1); return dfs(pairs, 0, -1, memo); } private int dfs(int[][] pairs, int index, int prevIndex, int[][] memo){ if(index>= pairs.length){ return 0; } int max = Integer.MIN_VALUE; int count = 0; if(prevIndex!=-1 && memo[prevIndex][index]!=-1) return memo[prevIndex][index]; if(prevIndex==-1 || pairs[prevIndex][1] < pairs[index][0]){ count = 1 + dfs(pairs, index+1, index, memo); } int choose = dfs(pairs, index+1, prevIndex, memo); max = Math.max(choose, count); if(prevIndex!=-1) memo[prevIndex][index] = max; return max; } } |