This problem is a subproblem of a problem posed in the ACM ICPC Kanpur Regionals Elimination Round:

Given 2 line segments bounded by the 2D points (Pa, Pb) and (Pc, Pd) respectively, find p and q (in the range [0,1]) that minimizes the function

f(p, q) = D(Px, Pa) + D(Py, Pd) + k D(Px, Py) where 
                                2 <= k <= 5, 
                                Px = p Pa + (1-p) Pb, 
                                Py = q Pc + (1-q) Pd and 
 D(x, y) is the euclidean distance between points x and y

(effectively, Px and Py are points on the line segments and the function encodes the cost of going from Pa to Pd through a connecting link of a cost that is k times the euclidean distance)

Some observations regarding this function:

  1. Parallel line segments will always cause atleast one of p and q to be either 0 or 1
  2. Intersecting line segments will always cause p and q to locate the point of intersection of the line segments (the triangle inequality can be applied to prove this)

The question: In the general case where the lines are inclined and potentially separated, how do we minimize this function?

link|improve this question
you should write this in c or c++ ! – Svisstack Oct 30 '10 at 19:47
@Svisstack - The language used is not important to me, the algorithm is. – Divye Kapoor Oct 30 '10 at 19:54
@Svisstack - Would you require a clarification of the question in C/C++? If so, which part? – Divye Kapoor Oct 30 '10 at 19:55
1  
I don't understand observation 2. Counterexample: the two line segments form a tall "X" with Pa and Pd epsilon-close to each other, and the point of intersection (Pi) at both midpoints. Now stretch the X vertically to infinity. Then D(Pa,Pi) + D(Pi,Pd) >> D(Pa,Pd) = epsilon. – Steve Tjoa Oct 31 '10 at 1:34
@Steve - you're right. It's a mistake in my observation. – Divye Kapoor Oct 31 '10 at 8:58
show 2 more comments
feedback

1 Answer

I think you should be able to take the partial derivatives of f with respect to p and q, set them to 0, and solve for p and q. That will give you a (local) minimum. If the minimum has 0 <= p <= 1 and 0 <= q <= 1, you're done, otherwise check the four endpoints (p=0,q=1, and so on).

I'm not positive that this will handle all degenerate conditions, but it should be a good start.

link|improve this answer
I mulled over it and saw a couple of sites on function minimization. This is indeed the generic method, but getting the analytical solution to the equation pair df/dp = 0 and df/dq = 0 turns out to be really messy. I'm looking for numerical solutions to the problem - possibly using binary search in 2 dimensions or possibly a variant of the Newton Raphson method. – Divye Kapoor Oct 31 '10 at 8:59
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.