AMAZON & MICROSOFT Question – Solved

11 Live
Optimal Points Selection Given a set of n distinct points on the x-axis, choose k of them such that the minimum distance between any two chosen points is as large as possible. Find this maximum possible minimum distance. Example Consider n = 5, k = 3, and x = [1, 4, 2, 9, 8]. In the optimal solution, one of the possible selections of points is [1, 4, 8]. Here, The distance between 1 and 4 = abs(1 - 4) = 3 The distance between 1 and 8 = abs(1 - 8) = 7 The distance between 4 and 8 = abs(4 - 8) = 4 The minimum amongst them is 3, which is the maximum possible. Function Description Complete the function maximizeMinimumDistance in the editor below. maximizeMinimumDistance has the following parameters: int x[n]: the x-coordinates of points int k: the number of points to choose Returns int: the maximum possible minimum distance between any 2 of the chosen points.

Asked in: AMAZON MICROSOFT

Image of the Question

Question Image Question Image

All Testcases Passed βœ”



Passcode Image

Solution


Please login to view the solution


Related Questions

| You are given a board of size M Γ— N where each cell can be either empty ('O') o… |
| Undirected Coloured Graph Shortest Path You are given an undirected weight… |
| Village Voyage A computer game "Village Voyage" has N villages (labeled 1 to… |
| Academic Decathlon Students are being selected for an academic decathlon tea… |
| Sum of Arrays Given two arrays each of length n, arr1 and arr2, in one opera… |
| Count Swaps During Custom Sorting Analyze the efficiency of the following so… |