Problem Description
A positive integer is magical if it is divisible by either a
or b
. Given the three integers n
, a
, and b
, return the n
th magical number. Since the answer may be very large, return it modulo 10^9 + 7
.
Key Insights
- A number is magical if it is divisible by
a
orb
. - The
n
th magical number can be found using the Least Common Multiple (LCM) ofa
andb
. - Binary search can be utilized to efficiently find the
n
th magical number. - The count of magical numbers up to any integer
x
can be computed asx // a + x // b - x // lcm(a, b)
.
Space and Time Complexity
Time Complexity: O(log(n * min(a, b)))
Space Complexity: O(1)
Solution
To find the n
th magical number, we can use binary search. The approach involves:
- Define a function to compute the Least Common Multiple (LCM) of
a
andb
. - Use binary search to find the smallest integer
x
such that the count of magical numbers up tox
is at leastn
. - The count of magical numbers up to
x
can be calculated using the formulax // a + x // b - x // lcm(a, b)
. - Return the result modulo
10^9 + 7
.