-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path1137.n-th-tribonacci-number.ts
61 lines (59 loc) · 1.11 KB
/
1137.n-th-tribonacci-number.ts
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
/*
* @lc app=leetcode id=1137 lang=typescript
*
* [1137] N-th Tribonacci Number
*
* https://leetcode.com/problems/n-th-tribonacci-number/description/
*
* algorithms
* Easy (63.18%)
* Likes: 1923
* Dislikes: 110
* Total Accepted: 296.1K
* Total Submissions: 468.7K
* Testcase Example: '4'
*
* The Tribonacci sequence Tn is defined as follows:
*
* T0 = 0, T1 = 1, T2 = 1, and Tn+3 = Tn + Tn+1 + Tn+2 for n >= 0.
*
* Given n, return the value of Tn.
*
*
* Example 1:
*
*
* Input: n = 4
* Output: 4
* Explanation:
* T_3 = 0 + 1 + 1 = 2
* T_4 = 1 + 1 + 2 = 4
*
*
* Example 2:
*
*
* Input: n = 25
* Output: 1389537
*
*
*
* Constraints:
*
*
* 0 <= n <= 37
* The answer is guaranteed to fit within a 32-bit integer, ie. answer <= 2^31
* - 1.
*
*/
// @lc code=start
function tribonacci(n: number): number {
if (n < 1) return 0;
if (n < 3) return 1;
return tribonacciTail(n, 1, 1, 0);
}
function tribonacciTail(n: number, acc1: number, acc2: number, acc3: number) {
if (n < 4) return acc1 + acc2 + acc3;
return tribonacciTail(n - 1, acc1 + acc2 + acc3, acc1, acc2);
}
// @lc code=end