-
Notifications
You must be signed in to change notification settings - Fork 93
/
Copy pathIncreasingTripletSubsequence334.java
69 lines (62 loc) · 1.93 KB
/
IncreasingTripletSubsequence334.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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
/**
* Given an unsorted array return whether an increasing subsequence of length
* 3 exists or not in the array.
*
* Formally the function should:
* Return true if there exists i, j, k
* such that arr[i] < arr[j] < arr[k] given 0 ≤ i < j < k ≤ n-1 else return false.
* Your algorithm should run in O(n) time complexity and O(1) space complexity.
*
* Examples:
* Given [1, 2, 3, 4, 5],
* return true.
*
* Given [5, 4, 3, 2, 1],
* return false.
*/
public class IncreasingTripletSubsequence334 {
public boolean increasingTriplet(int[] nums) {
if (nums == null || nums.length < 3) return false;
int a = nums[0];
int b = Integer.MAX_VALUE;
for (int i=1; i<nums.length; i++) {
if (nums[i] > b) return true;
else if (nums[i] > a) b = nums[i];
else a = nums[i];
}
return false;
}
public boolean increasingTriplet2(int[] nums) {
if (nums == null || nums.length < 3) return false;
int N = nums.length;
int[] dp = new int[3];
int size = 0;
for (int i=0; i<N; i++) {
int curr = nums[i];
int insertPoist = 0;
while (insertPoist < size && dp[insertPoist] < curr) {
insertPoist++;
}
dp[insertPoist] = curr;
if (insertPoist == size) size++;
if (size == 3) return true;
}
return false;
}
public boolean increasingTriplet3(int[] nums) {
if (nums == null || nums.length < 3) return false;
int N = nums.length;
int[] dp = new int[N + 1];
for (int i=1; i<=N; i++) {
int tmp = 1;
for (int j=1; j<i; j++) {
if (nums[i-1] > nums[j-1] && dp[j] + 1 > tmp) {
tmp = dp[j] + 1;
}
if (tmp >= 3) return true;
}
dp[i] = tmp;
}
return false;
}
}