Problem Description
Given an array of digits which is sorted in non-decreasing order. You can write numbers using each digits[i] as many times as we want. Return the number of positive integers that can be generated that are less than or equal to a given integer n.
Key Insights
- The digits can be reused to form numbers of varying lengths.
- We need to consider numbers with lengths from 1 up to the number of digits in n.
- Count all valid numbers of lengths less than the number of digits in n.
- For numbers with the same length as n, we need to compare digits positionally to ensure they remain less than or equal to n.
Space and Time Complexity
Time Complexity: O(K + M) where K is the number of digits and M is the number of digits in n. Space Complexity: O(1) since we are only using a constant amount of space.
Solution
The solution involves counting the numbers that can be formed with the given digits. We first count all the numbers that can be formed with fewer digits than n. For numbers with the same number of digits as n, we will construct these numbers digit by digit, ensuring that they remain less than or equal to n.
- Count numbers with lengths < len(n).
- For numbers with length equal to len(n), iterate through each digit of n and count how many valid numbers can be formed.
We will utilize combinatorial counting for numbers with fewer digits and positional comparisons for numbers with the same length.