Solution: Super Ugly Number

Let’s solve the Super Ugly Number problem using the K-Way Merge pattern.

Statement

Given an integer n and an array of distinct prime numbers primes, return the n-th super ugly number. A super ugly number is a positive integer whose only prime factors are from a given array primes.

The n-th super ugly number is guaranteed to fit within a 32-bit signed integer.

Constraints:

  • 11 \leq n 105\leq 10^5

  • 11 \leq primes.length 100\leq 100

  • 22 \leq primes[i] 1000\leq 1000

  • primes[i] is guaranteed to be a prime number.

  • All the values of primes are unique and sorted in an ascending order.

Solution

The problem is solved using a k-way merge approach combined with a min heap, ensuring that numbers are generated in strictly increasing order while avoiding redundancy. Instead of precomputing all possible multiples of the given prime factors, we dynamically construct the list by continuously tracking and merging only the smallest valid values at each step. This prevents unnecessary computations and avoids storing large sets of numbers in advance.

The algorithm begins with a list containing only 11 and a min heap initialized with the first multiple of each prime, which is the prime itself. At each step, the smallest number is extracted from the heap and added to the list if it has not already been included. The extracted prime is multiplied by the next number in the list that comes after the last number used for this prime to generate the next number. The newly computed number is then pushed back into the heap, allowing the process to continue in an ordered manner. This process continues until the desired count is reached.

The steps of the algorithm are as follows:

  1. Create an array, ugly, and initialize it with 1, as 1 is always the first super ugly number.

  2. Create a minHeap and push the first multiple of each prime (which is the prime itself) into the heap as (prime, prime, 0), where:

    1. The first value represents the next potential ugly number.

    2. The second value keeps track of the prime factor that generated the next potential ugly number.

    3. The third value is the index of the ugly number multiplied by the prime to generate the potential ugly number. It helps us track which ugly number was last multiplied by the prime to correctly compute the next multiple.

  3. Iterate until n super ugly numbers are found:

    1. Extract the smallest number (nextUgly) from the heap. We also extract the corresponding prime and index from the heap.

    2. If nextUgly is not a duplicate (since multiple primes can generate the same number), append it to ugly.

    3. Compute the next multiple (number) by multiplying the extracted prime and the next number in ugly that comes after the last number used for this prime.

    4. Push the new tuple (prime * ugly[index + 1], prime, index + 1) back into the heap.

  4. The n-th super ugly number is the last element in the ugly list. Return this value as the final result.

Let’s look at the following illustration to get a better understanding of the solution:

Level up your interview prep. Join Educative to access 70+ hands-on prep courses.