Kth Smallest Prime Fraction

Try to solve the Kth Smallest Prime Fraction problem.

Statement

You are given a sorted array of unique integers, arr, which includes the number 11 and other prime numbers. You are also given an integer kk.

For every index ii and jj where 0i<j<0 \leq i < j < arr.length, you can form a fraction by taking the number at index ii as the numerator and the number at index jj as the denominator, resulting in the fraction arr[i] / arr[j].

Your task is to return the kthk^{th} smallest fraction among these fractions. The answer should be returned as an array of two integers, where the first element, answer[0], is the numerator (arr[i]), and the second element, answer[1], is the denominator (arr[j]) corresponding to the kthk^{th} smallest fraction.

Constraints:

  • 22 \leq arr.length 103\leq 10^3

  • 1arr[i]3×1041 \leq arr[i] \leq 3 \times 10^4

  • arr[0]=1arr[0] = 1

  • arr[i]arr[i] is a prime number for i>0.i > 0.

  • All the numbers of arr are unique and sorted in strictly increasing order.

  • 1k1 \leq k \leq arr.length ×\times (arr.length 1- 1)

Examples

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