Smallest Good Base — LeetCode 483 Python Solution
HardMathBinary Search
- Problem
- #483
- Pattern
- Monotonic Stack
- Reading time
- 4 min
- Source
- leetcode.com
The problem
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.
Example
- Input
- n = "13"
- Output
- "3"
- Explanation
- 13 base 3 is 111.
Python solution
Python
class Solution:
def smallestGoodBase(self, n: str) -> str:
def cal(k, m):
p = s = 1
for i in range(m):
p *= k
s += p
return s
num = int(n)
for m in range(63, 1, -1):
l, r = 2, num - 1
while l < r:
mid = (l + r) >> 1
if cal(mid, m) >= num:
r = mid
else:
l = mid + 1
if cal(l, m) == num:
return str(l)
return str(num - 1)Complexity
| Measure | Complexity |
|---|---|
| Time | O(log n) or O(n log n) |
| Space | O(1) auxiliary |
Pattern: Monotonic Stack
Answer "what is the next greater element" for every position in one pass. LeetCode 483. Smallest Good Base is filed here because the reference solution below belongs to the algorithm family this hub collects, even though its LeetCode tags point elsewhere.
The monotonic stack guide has the Python template for the pattern and the 225 LeetCode problems that use it.
Related problems
Frequently asked questions
- How hard is LeetCode 483. Smallest Good Base?
- LeetCode 483. Smallest Good Base is rated Hard on LeetCode.
- What topics does LeetCode 483. Smallest Good Base cover?
- LeetCode 483. Smallest Good Base is tagged Math and Binary Search on LeetCode.