Warning: foreach() argument must be of type array|object, bool given in /var/www/html/web/app/themes/studypress-core-theme/template-parts/header/mobile-offcanvas.php on line 20

In this problem we will develop a divide-and-conquer algorithm for the following geometric task.

CLOSEST PAIRInput: A set of points in the plane, {p1=(x1;y1),p2=(x2,y2),...,pn=(xn,yn)}

Output: The closest pair of points: that is, the pair PiPjfor which the distance between piand pj, that is,

(xi-xi)2+z(yi-yi)2,

is minimized.

For simplicity, assume that n is a power of two, and that all the x-coordinates role="math" localid="1659237354869" xi are distinct, as are the y-coordinates.

Here’s a high-level overview of the algorithm:

.Find a value for which exactly half the points have xi<x, and half have xi>x. On this basis, split the points into two groups, L and R.

• Recursively find the closest pair in L and in R. Say these pairs are pL·qLLand pR·qRRwith distances dLand dR respectively. Let d be the smaller of these two distances.

• It remains to be seen whether there is a point in Land a point in R that are less than distance dapart from each other. To this end, discard all points with xi<x-dor xi>x+d and sort the remaining points by y-coordinate.

• Now, go through this sorted list, and for each point, compute its distance to the seven subsequent points in the list. Let pM·qMbe the closest pair found in this way.

• The answer is one of the three pairs role="math" localid="1659237951608" {pL,qL},{pR,qR}{pM,qM}, whichever is closest.

(a) In order to prove the correctness of this algorithm, start by showing the following property: any square of size d×d in the plane contains at most four points of L.

(b) Now show that the algorithm is correct. The only case which needs careful consideration is when the closest pair is split between L and R.

(c) Write down the pseudocode for the algorithm, and show that its running time is given by the recurrence:

T(n)=2T(nl2)+0(nlogn)

Show that the solution to this recurrence is o(nlogzn).

(d) Can you bring the running time down to O(nlogn)?

Short Answer

Expert verified

(a) The proof is already be given in the solution.

(b) The algorithm stated is correct.

(c) The run time is onlog2n.

(c) Yes algorithm can be scale down.

Step by step solution

01

Step – 1: Introduction  

The divide-and-conquer approach is a technique for solving different issues in algorithms. It is a strategy in which the problem is divided into multiple sub-problems.

• After that, each sub-problem is addressed on its own.

• Finally, the outcomes of the sub-problems are combined to provide a final solution.

• To get the nearest pair of points on a plane, a divide-and-conquer approach is applied.

02

Step – 2: Solution of each part

(a)

Consider the information:

• The points are divided into two parts, the L and the R .

• The goal is to show that L includes no more than four points in any d×dsquare.

• Assume a square is located on a d×dplane.

• If the square has five or more points, split it into four equal sections.

• The smaller squares are represented by these four sections.

• A pair of points must be found in the same smaller square.

• The distance between two locations in the same smaller square must be at least

Tn=2Tnl2+anlogn

• This violates the assertion that every pair of points is separated by at least " d ".

As a result, it's determined that a d×dsquare can only have four points.

03

The algorithm stated is correct.

(b)

Allow the information:

• The divide-and-conquer algorithm is used to find the closest pair of points.

• The objective is to prove the correctness of the algorithm.

Positive Implementation:

• If the recursion is not bottomed down to a single-point sub-problem, the procedure works appropriately.

• Make sure that the divide-and-conquer method does not result in a sub-problem with only one point while executing the splitting phase.

• Also, from the list, calculating the distance between seven successive spots is adequate.

• It's because a d×2drectangle can only hold eight points. Assume that the left rectangle is formed by a d×dsquare with a maximum of four points.

• Similarly, with at most four points, the d×dsquare forms the right side of the rectangle.

• As a result, a d×2drectangle can only contain points.

• With eight points in the rectangle, it is evident that checking the distances of the next seven points in the list is sufficient.

As a result, the divide-and-conquer method used to solve the issue of determining the nearest pair is accurate

04

The run time of algorithm.

(c)

Consider the information:

• The objective is to show that the pseudocode of the closest pair algorithm has a recurrence relation Tn=2Tnl2+onlognwhich results in a running time of onlog2n.

Pseudocode:

The pseudocode of the closest pair algorithm has the following steps-

• Finding a line that splits the collection of points into two half L and R is the first stage. The points are saved in the X and Y arrays. xhas been sorting x-coordinates more and more, whereas y has been sorting y-coordinates more and more.

• The needed pair is found in L by one recursive call, and the required pair is found in R by the other recursive call. The least of the two estimated distances determines the final closest pair.

• The closest pair of points is determined among the three pairs of points in the last phase. It might be one of the recursive call's pair of points, or it could be a pair with one point on each side.

Running time:

• In each recursive invocation of the algorithm, the two array inputs are given x and y . x contain x-coordinates and y contain y-coordinates.

• Because the sort is performed at each recursive call, the recurrence relation of the algorithm results in T(n)=2T(n2)+O(nlogn).

• Using the Master’s theorem, with the above recurrence relation, the algorithm’s running time results in onlog2n.

Therefore, the running time of the closest pair algorithm is onlog2n.

05

The algorithm can be scale down.

(d)

Consider the information:

The aim is to investigate that whether the closest pair problem can be solved in onlogn.

“Yes”, the closest pair problem can be solved in onlogn.

Explanation:

• The running time of the algorithm results in onlog2n. Because sorted arrays are being passed in every recursive call.

• The primary goal should be to sort the arrays in the first place. This cuts down on the amount of time it takes to complete the task.

• The sorted arrays can be sent to the first recursive function to accomplish this.

• All subsequent recursive calls will be linearly timed.

• This way the recurrence relation of the algorithm is Tn=2Tn/2+on.

• This recurrence relation gives a running time ofonlogn.

Therefore, the time complexity of onlogncan be achieved by presorting.

Unlock Step-by-Step Solutions & Ace Your Exams!

  • Full Textbook Solutions

    Get detailed explanations and key concepts

  • Unlimited Al creation

    Al flashcards, explanations, exams and more...

  • Ads-free access

    To over 500 millions flashcards

  • Money-back guarantee

    We refund you if you fail your exam.

Over 30 million students worldwide already upgrade their learning with Vaia!

One App. One Place for Learning.

All the tools & learning materials you need for study success - in one app.

Get started for free

Most popular questions from this chapter

A kway merge operation. Suppose you have ksorted arrays, each with nelements, and you want to combine them into a single sorted array ofkn elements.

(a)Here’s one strategy: Using the merge procedure from Section 2.3, merge the first two arrays, then merge in the third, then merge in the fourth, and so on. What is the time complexity of this algorithm, in terms of kand n?

(b) Give a more efficient solution to this problem, using divide-and-conquer.

In justifying our matrix multiplication algorithm (Section 2.5), we claimed the following block wise property: if X and Y are n×nn matrices, and

X=[ABCD],Y=[EFGH],

where A,B,C,D,E,F,G, and H are n/2×n/2 sub-matrices, then the product XY can be expressed in terms of these blocks:

XY=[ABCD][EFGH]=[AE+BGAF+BHCE+DGCF+DH]

Prove this property.

A binary tree is full if all of its vertices have either zero or two children. Let Bndenote the number of full binary trees with n vertices. (a)By drawing out all full binary trees with 3, 5, or 7 vertices, determine the exact values of B3, B5, and B7. Why have we left out even numbers of vertices, like B4?

(b) For general n, derive a recurrence relation for Bn.

(c) Show by induction that Bnis Ω(2n).

Show that for any positive integers n and any base b , there must some power of b lying in the range [b,bn].

Thesquare of a matrix A is its product with itself, AA.

(a) Show that five multiplications are sufficient to compute the square of a 2 x 2 matrix.

(b) What is wrong with the following algorithm for computing the square of an n x n matrix?

“Use a divide-and-conquer approach as in Strassen’s algorithm, except that instead of getting 7 subproblems of size n2, we now get 5 subproblems of size n2 thanks to part (a). Using the same analysis as in Strassen’s algorithm, we can conclude that the algorithm runs in time O (nc) .”

(c) In fact, squaring matrices is no easier than matrix multiplication. In this part, you will show that if n x n matrices can be squared in time S(n) = O(nc), then any two n x n matrices can be multiplied in time O(nc) .

  1. Given two n x n matrices A and B, show that the matrix AB + BA can be computed in time 3S(n) + O(n2 ) .
  2. Given two n x n matrices X and Y, define the 2n x 2n matrices A and B,L as follows:
    A=X000andB=0Y00
    What is AB + BA, in terms of X and Y?
  3. Using (i) and (ii), argue that the product XY can be computed in time 3S(2n) + O(n2 ). Conclude that matrix multiplication takes time O(nc ).
See all solutions

Recommended explanations on Computer Science Textbooks

View all explanations

What do you think about this solution?

We value your feedback to improve our textbook solutions.

Study anywhere. Anytime. Across all devices.

Sign-up for free