-
Notifications
You must be signed in to change notification settings - Fork 821
/
Copy pathMaximumLengthOfPairChain.java
50 lines (46 loc) · 1.59 KB
/
MaximumLengthOfPairChain.java
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
/* (C) 2024 YourCompanyName */
package greedy;
import java.util.Arrays;
/**
* Created by gouthamvidyapradhan on 01/05/2018. You are given n pairs of numbers. In every pair,
* the first number is always smaller than the second number.
*
* <p>Now, we define a pair (c, d) can follow another pair (a, b) if and only if b < c. Chain of
* pairs can be formed in this fashion.
*
* <p>Given a set of pairs, find the length longest chain which can be formed. You needn't use up
* all the given pairs. You can select pairs in any order.
*
* <p>Example 1: Input: [[1,2], [2,3], [3,4]] Output: 2 Explanation: The longest chain is [1,2] ->
* [3,4] Note: The number of given pairs will be in the range [1, 1000].
*
* <p>Solution: O(N log N) sort the pairs with ending interval (greedy sort) and try to accommodate
* as many pairs as possible. If any current pair violates the chaining condition (b < c) then,
* ignore that particular pair.
*/
public class MaximumLengthOfPairChain {
/**
* Main method
*
* @param args
* @throws Exception
*/
public static void main(String[] args) throws Exception {
int[][] A = {{1, 2}, {2, 3}, {3, 4}};
System.out.println(new MaximumLengthOfPairChain().findLongestChain(A));
}
public int findLongestChain(int[][] pairs) {
Arrays.sort(
pairs,
(o1, o2) -> o1[1] == o2[1] ? Integer.compare(o1[0], o2[0]) : Integer.compare(o1[1], o2[1]));
int count = 1;
int[] curr = pairs[0];
for (int i = 1; i < pairs.length; i++) {
if (pairs[i][0] > curr[1]) {
count++;
curr = pairs[i];
}
}
return count;
}
}