Problem Description
Given an integer n represented as a string, return the smallest good base of n. We call k >= 2 a good base of n, if all digits of n base k are 1's.
Key Insights
- A good base k satisfies the condition that n can be expressed as a sum of powers of k, specifically n = k^m + k^(m-1) + ... + k^0, where all coefficients are 1.
- The maximum possible value of m can be derived from the logarithm of n, since k^(m+1) > n for k >= 2.
- By iterating possible values of m from a maximum down to 1, we can calculate the corresponding k using the formula derived from the geometric series.
Space and Time Complexity
Time Complexity: O(log(n)) Space Complexity: O(1)
Solution
The problem can be solved using a mathematical approach where we calculate potential values for k based on m. We iterate m from its maximum possible value down to 1 and derive k using the formula for the sum of a geometric series. The first valid k found will be the smallest good base.