DEV Community

Cover image for Advanced Fibonacci Technique with Dynamic Programming
Vitalii Sevastianov
Vitalii Sevastianov

Posted on

Advanced Fibonacci Technique with Dynamic Programming

Dynamic Programming (DP) is a method for solving complex problems by breaking them down into simpler subproblems. It is widely used in computer programming for optimization problems. In JavaScript, DP can be implemented using arrays or objects to store the results of subproblems. Here are a few classic examples of DP problems and their JavaScript implementations:

1. Fibonacci Series

The Fibonacci series is a sequence where each number is the sum of the two preceding ones, usually starting with 0 and 1.

Example Code:

function fibonacci(n) {
    if (n <= 1) return n;
    let dp = [0, 1];
    for (let i = 2; i <= n; i++) {
        dp[i] = dp[i - 1] + dp[i - 2];
    }
    return dp[n];
}

console.log(fibonacci(10)); // Output: 55
Enter fullscreen mode Exit fullscreen mode

2. Climbing Stairs

You are climbing a staircase. It takes n steps to reach the top. Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?

Example Code:

function climbStairs(n) {
    if (n === 1) return 1;
    let dp = [1, 2];
    for (let i = 2; i < n; i++) {
        dp[i] = dp[i - 1] + dp[i - 2];
    }
    return dp[n - 1];
}

console.log(climbStairs(5)); // Output: 8
Enter fullscreen mode Exit fullscreen mode

3. *0-1 Knapsack Problem

Given weights and values of n items, put these items in a knapsack of capacity W to get the maximum total value in the knapsack.

Example Code:

function knapsack(values, weights, W) {
    let n = values.length;
    let dp = Array(n + 1).fill(0).map(() => Array(W + 1).fill(0));

    for (let i = 1; i <= n; i++) {
        for (let w = 1; w <= W; w++) {
            if (weights[i - 1] <= w) {
                dp[i][w] = Math.max(dp[i - 1][w], values[i - 1] + dp[i - 1][w - weights[i - 1]]);
            } else {
                dp[i][w] = dp[i - 1][w];
            }
        }
    }

    return dp[n][W];
}

let values = [60, 100, 120];
let weights = [10, 20, 30];
let W = 50;

console.log(knapsack(values, weights, W)); // Output: 220
Enter fullscreen mode Exit fullscreen mode

Explanation:

Fibonacci Series and Climbing Stairs: Both use a simple array to store the results of subproblems. The solution to the next problem is built up from the solutions to previous problems.

0-1 Knapsack: This problem uses a 2D array. Each element dp[i][w] stores the maximum value that can be attained with weight less than or equal to w using items up to ith item.

These examples demonstrate how DP can be used to solve problems efficiently by storing the results of previous computations. DP is especially useful for problems that have overlapping subproblems and optimal substructure, meaning the optimal solution to the problem can be constructed from optimal solutions of its subproblems.

Key Takeaways from DP:

Overlapping Subproblems: DP is most effective when the problem can be broken down into smaller, overlapping subproblems whose solutions can be reused.

Optimal Substructure: Problems suitable for DP typically have an optimal substructure, meaning the solution to the problem can be composed of optimal solutions to its subparts.

Memoization and Tabulation: DP approaches often use memoization (top-down approach) or tabulation (bottom-up approach) to store the results of subproblems to avoid redundant computations.

Space-Time Trade-Off: DP can significantly reduce the time complexity at the expense of increased space complexity. This trade-off is often acceptable for the gains in efficiency it brings.

Applicability: Apart from the given examples, DP is widely used in various fields such as economics, data analysis, genetics, and more, showcasing its versatility.

Learning Curve: Implementing DP solutions requires a good understanding of recursion and the ability to identify the structure of the problem. Practice and experience are key to mastering DP.

In JavaScript, as with any programming language, the implementation of DP solutions revolves around arrays or objects to store the results of subproblems and iterative or recursive approaches to build up to the final solution. By mastering DP, programmers can optimize their solutions for a wide range of problems, enhancing both performance and efficiency.

Top comments (0)