-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlongestSubsequence.cpp
More file actions
53 lines (42 loc) · 1.05 KB
/
longestSubsequence.cpp
File metadata and controls
53 lines (42 loc) · 1.05 KB
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
// Initial Template for C++
#include <bits/stdc++.h>
using namespace std;
// } Driver Code Ends
// User function Template for C++
class Solution{
public:
int longestSubsequence(int N, int A[])
{
int res = 0;
int dp[N] = {0};
for(int i = 0; i < N; i++)
{
dp[i] = 1;
for(int j = 0; j < i; j++)
{
if(abs(A[j] - A[i]) == 1)
{
dp[i] = max(dp[i], dp[j] + 1);
}
}
res = max(res, dp[i]);
}
return res;
}
};
// { Driver Code Starts.
int main(){
//Given an array A[] of size N, find the longest subsequence such that difference between adjacent elements is one.
int t;
cin>>t;
while(t--){
int N;
cin>>N;
int A[N];
for(int i = 0;i < N;i++)
cin>>A[i];
Solution ob;
cout<<ob.longestSubsequence(N, A)<<endl;
}
return 0;
} // } Driver Code Ends