-
Notifications
You must be signed in to change notification settings - Fork 1
/
LenLongestFibSubseq.cpp
69 lines (64 loc) · 2.08 KB
/
LenLongestFibSubseq.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
//
// Created by leiwingqueen on 2022/7/9.
//
//如果序列 X_1, X_2, ..., X_n 满足下列条件,就说它是 斐波那契式 的:
//
//n >= 3
//对于所有 i + 2 <= n,都有 X_i + X_{i+1} = X_{i+2}
//给定一个严格递增的正整数数组形成序列 arr ,找到 arr 中最长的斐波那契式的子序列的长度。如果一个不存在,返回 0 。
//
//(回想一下,子序列是从原序列 arr 中派生出来的,它从 arr 中删掉任意数量的元素(也可以不删),而不改变其余元素的顺序。例如, [3, 5, 8] 是 [3, 4, 5, 6, 7, 8] 的一个子序列)
//
//
//
//示例 1:
//
//输入: arr = [1,2,3,4,5,6,7,8]
//输出: 5
//解释: 最长的斐波那契式子序列为 [1,2,3,5,8] 。
//示例 2:
//
//输入: arr = [1,3,7,11,12,14,18]
//输出: 3
//解释: 最长的斐波那契式子序列有 [1,11,12]、[3,11,14] 以及 [7,11,18] 。
//
//
//提示:
//
//3 <= arr.length <= 1000
//1 <= arr[i] < arr[i + 1] <= 10^9
//
//来源:力扣(LeetCode)
//链接:https://leetcode.cn/problems/length-of-longest-fibonacci-subsequence
//著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
#include "vector"
#include "unordered_map"
using namespace std;
class Solution {
public:
int lenLongestFibSubseq(vector<int> &arr) {
unordered_map<int, int> indexMap;
int n = arr.size();
for (int i = 0; i < n; ++i) {
indexMap[arr[i]] = i;
}
vector<vector<int>> dp(n - 1, vector<int>(n));
for (int i = 0; i < n; ++i) {
dp[0][i] = 2;
}
int mx = 2;
for (int i = 0; i < n - 1; ++i) {
for (int j = i + 1; j < n; ++j) {
dp[i][j] = 2;
int sub = arr[j] - arr[i];
if (indexMap.count(sub) > 0 && indexMap[sub] < i) {
dp[i][j] = dp[indexMap[sub]][i] + 1;
}
if (dp[i][j] > mx) {
mx = dp[i][j];
}
}
}
return mx > 2 ? mx : 0;
}
};