Problem Description
An ugly number is a positive integer whose prime factors are limited to 2, 3, and 5. Given an integer n, return the nth ugly number.
Key Insights
- Ugly numbers are generated by multiplying the previous ugly numbers by 2, 3, or 5.
- The smallest ugly number is 1, which is considered an ugly number by definition.
- We can maintain a list of ugly numbers and use a min-heap (priority queue) to efficiently find the next ugly number.
- Each time we extract the smallest ugly number from the heap, we can generate new ugly numbers by multiplying it by 2, 3, and 5.
Space and Time Complexity
Time Complexity: O(n log n) - due to the heap operations for generating ugly numbers. Space Complexity: O(n) - for storing the list of ugly numbers.
Solution
To solve the problem, we use a min-heap to keep track of the next potential ugly numbers. We start with the first ugly number (1) in the heap. In each iteration, we extract the smallest number from the heap, and then generate new numbers by multiplying this number by 2, 3, and 5. We also ensure that we do not add duplicate numbers to the heap.