-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathlongest_alternating_subsequence.cpp
75 lines (67 loc) · 1.9 KB
/
longest_alternating_subsequence.cpp
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
70
71
72
73
74
75
#include <bits/stdc++.h>
using namespace std;
// problem : https://leetcode.com/problems/wiggle-subsequence
// O(n^2) time and o(n) space
class Solution {
public:
int wiggleMaxLength(vector<int>& nums) {
int n=nums.size();
if(n == 0) return 0;
// up[i] refers to the length of the longest wiggle subsequence obtained so far considering ith element
vector<int>up(n,1),down(n,1);
for(int i=1;i<n;i++){
for(int j=0;j<i;j++){
if(nums[i] > nums[j]){
up[i] = max(up[i],1+down[j]);
}
else if(nums[i] < nums[j]){
down[i] = max(down[i],1+up[j]);
}
}
}
return max(up[n-1],down[n-1]);
}
};
// O(n) time and O(n) space
class Solution {
public:
int wiggleMaxLength(vector<int>& nums) {
int n=nums.size();
if(n == 0) return 0;
// up[i] refers to the length of the longest wiggle subsequence obtained so far considering ith element
vector<int>up(n,1),down(n,1);
for(int i=1;i<n;i++){
if(nums[i] > nums[i-1]){
up[i] = 1+down[i-1];
down[i] = down[i-1];
}
else if(nums[i] < nums[i-1]){
down[i] = 1+up[i-1];
up[i] = up[i-1];
}
else{
down[i] = down[i-1];
up[i] = up[i-1];
}
}
return max(up[n-1],down[n-1]);
}
};
// O(n) ime and O(1) space
class Solution {
public:
int wiggleMaxLength(vector<int>& nums) {
int n=nums.size();
if(n == 0) return 0;
int up=1,down=1;
for(int i=1;i<n;i++){
if(nums[i] > nums[i-1]){
up = down+1;
}
else if(nums[i] < nums[i-1]){
down = up+1;
}
}
return max(up,down);
}
};