Skip to content

Commit e459074

Browse files
committed
Add 0873
1 parent 8492bb9 commit e459074

File tree

1 file changed

+54
-0
lines changed

1 file changed

+54
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
// A sequence X_1, X_2, ..., X_n is fibonacci - like if:
2+
3+
// n >= 3
4+
// X_i + X_{ i + 1 } = X_{ i + 2 } for all i + 2 <= n
5+
// Given a strictly increasing array A of positive integers forming a sequence, find the length of the longest fibonacci - like subsequence of A.If one does not exist, return 0.
6+
7+
// (Recall that a subsequence is derived from another sequence A by deleting any number of elements(including none) from A, without changing the order of the remaining elements.For example, [3, 5, 8] is a subsequence of[3, 4, 5, 6, 7, 8].)
8+
9+
// Example 1:
10+
11+
// Input: [1, 2, 3, 4, 5, 6, 7, 8]
12+
// Output: 5
13+
// Explanation:
14+
// The longest subsequence that is fibonacci - like: [1, 2, 3, 5, 8].
15+
16+
// Example 2:
17+
18+
// Input: [1, 3, 7, 11, 12, 14, 18]
19+
// Output: 3
20+
// Explanation:
21+
// The longest subsequence that is fibonacci - like:
22+
// [1, 11, 12], [3, 11, 14] or[7, 11, 18].
23+
24+
25+
// Note:
26+
27+
// 3 <= A.length <= 1000
28+
// 1 <= A[0] < A[1] < ... < A[A.length - 1] <= 10 ^ 9
29+
// (The time limit has been reduced by 50 % for submissions in Java, C, and C++.)
30+
31+
32+
// Dynamic Programming
33+
/**
34+
* @param {number[]} A
35+
* @return {number}
36+
*/
37+
var lenLongestFibSubseq = function (A) {
38+
let len = A.length
39+
let map = {}
40+
let res = 0
41+
let dp = [...Array(len)].map(r => Array(len).fill(2))
42+
for (let i = 0; i < len; i++) {
43+
map[A[i]] = i
44+
for (let j = 0; j < i; j++) {
45+
if (A[i] - A[j] < A[j] && A[i] - A[j] in map) {
46+
dp[j][i] = Math.max(dp[j][i], 1 + dp[map[A[i] - A[j]]][j])
47+
}
48+
res = Math.max(res, dp[j][i])
49+
}
50+
}
51+
return res === 2 ? 0 : res
52+
}
53+
// Runtime: 204 ms, faster than 70.67 % of JavaScript online submissions for Length of Longest Fibonacci Subsequence.
54+
// Memory Usage: 82.1 MB, less than 50.00 % of JavaScript online submissions for Length of Longest Fibonacci Subsequence.

0 commit comments

Comments
 (0)