Solution: Kth Smallest Prime Fraction
Let’s solve the Kth Smallest Prime Fraction problem using the K-Way Merge pattern.
We'll cover the following
Statement
You are given a sorted array of unique integers, arr
, which includes the number
For every index arr.length
, you can form a fraction by taking the number at index arr[i] / arr[j]
.
Your task is to return the answer[0]
, is the numerator (arr[i]
), and the second element, answer[1]
, is the denominator (arr[j]
) corresponding to the
Constraints:
arr.length
is a prime number for All the numbers of
arr
are unique and sorted in strictly increasing order.arr.length
( arr.length
)
Solution
We need to find the
We first add the smallest possible fraction for each denominator into a heap. This fraction is formed by pairing the first element of the array with each later element. As the array is sorted, the smallest fraction for any denominator always has the first element as the numerator. Adding only these fractions ensures we process the smallest ones first.
Next, we repeatedly remove the smallest fraction from the heap. Each fraction belongs to a sequence where the denominator stays the same, but the numerator can increase. If a larger numerator exists in that sequence, we form the next fraction and insert it into the heap. This keeps the heap updated and ensures we always have the next smallest fraction available.
We repeat this process
Here are the detailed steps of the algorithm that we have just discussed:
We initialize an empty heap,
minHeap
, to store fractions in ascending order.Next, we iterate over the input array,
arr
, from index(denoted by ). For each arr[j]
, we form the smallest possible fraction usingarr[0]
as the numerator andarr[j]
as the denominator. Asarr
is sorted, the smallest fraction for each denominator is alwaysarr[0] / arr[j]
.At each iteration, we store the following three values in the min heap:
A fraction value is denoted by
arr[0] / arr[j]
.A numerator index is initially set to
, referring to arr[0]
.A denominator index,
, refers to arr[j]
.
The fractions are inserted into
minHeap
, using their values as keys.
To identify the
smallest fraction, we repeat the following process times: Extract the smallest fraction from
minHeap
, representing the next smallest fraction overall. Identify the numerator indexi
and denominator indexj
.If there is a larger fraction available from the same denominator group (
i + 1 < j
), computearr[i + 1] / arr[j]
and insert it intominHeap
. This ensures the heap remains updated with the next candidate fraction.
After performing the above steps
times, we extract the top fraction from min_heap
, which is thesmallest fraction. So, we return its numerator and denominator as [arr[i], arr[j]]
.
The following illustration shows these steps in detail:
Level up your interview prep. Join Educative to access 70+ hands-on prep courses.