-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathcode_1.cpp
44 lines (41 loc) · 941 Bytes
/
code_1.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
/
// main.cpp
// Algorithm
//
// Created by Mohd Shoaib Rayeen on 31/07/18.
// Copyright © 2018 Shoaib Rayeen. All rights reserved.
//
#include <iostream>
using namespace std;
int longestSubseqWithDiffOne(int arr[], int n) {
int dp[n];
for (int i = 0; i< n; i++) {
dp[i] = 1;
}
for (int i=1; i<n; i++) {
for (int j=0; j<i; j++) {
if ((arr[i] == arr[j]+1) || (arr[i] == arr[j]-1)) {
dp[i] = max(dp[i], dp[j]+1);
}
}
}
int result = 1;
for (int i = 0 ; i < n ; i++) {
if (result < dp[i]) {
result = dp[i];
}
}
return result;
}
int main() {
int n;
cout << "\nEnter Size\t:\t";
cin >> n;
int arr[n];
cout << "\nEnter Sequence\n";
for(int i =0; i < n; i++ ) {
cin >> arr[i];
}
cout << "\nResult is\t:\t" << longestSubseqWithDiffOne(arr,n);
return 0;
}