Find the Minimum Number of Fibonacci Numbers Whose Sum Is K

Given an integer k, return the minimum number of Fibonacci numbers whose sum is equal to k. The same Fibonacci number can be used multiple times.

The Fibonacci numbers are defined as:

It is guaranteed that for the given constraints we can always find such Fibonacci numbers that sum up to k.
 

Example 1:

Input: k = 7
Output: 2 
Explanation: The Fibonacci numbers are: 1, 1, 2, 3, 5, 8, 13, ... 
For k = 7 we can use 2 + 5 = 7.
Example 2:

Input: k = 10
Output: 2 
Explanation: For k = 10 we can use 2 + 8 = 10.

Example 3:

Input: k = 19
Output: 3 
Explanation: For k = 19 we can use 1 + 5 + 13 = 19.

 

Constraints:


Solution:

class Solution {    
    public int findMinFibonacciNumbers(int k) {
        int[] fb = new int[45];
        fb[1] = 1;
        fb[2] = 1;
        // 1 1 2 3 5 8 13
        for (int i = 2; i < fb.length; i ++) {
            fb[i] = fb[i - 1] + fb[i - 2];
        }
        return helper(fb, k);
    }
    
    private int helper(int[] fb, int k) {
        if (k == 0) return 0;
        for (int i = fb.length - 1; i >= 0; i --) {
            if (k >= fb[i]) {
                return 1 + helper(fb, k - fb[i]);
            }
        }
        return 0;
    }
}