Data for the problem:

  1. 2D grid (lattice) of size N x N

  2. n nodes placed on the grid: node1, node2, … noden Each of nodes contain some data:

    a. nodei is presented by 3 parameters ( xi, yi, ti )

    b. xi and yi represent the coordinates on the grid

    c. ti represent the time when the node's data is ready

  3. Given a noden+1 and tn+1, I should find xn+1 and yn+1 such that, if we define li = ( xn+1 - xi ) + ( yn+1 - yi ), for every 1 <= i <= n, then will take place ti + li <= tn+1. If the above is impossible then max( tn+1 – ( ti + li )) should be minimized.

For example please take a look for the following examples when n = 2

Node1: x1 = 0, y1 = 0, t1 = 1

Node2: x2 = 4, y2 = 3, t2 = 4

Node2: x3 = ?, y3 = ?, t3 = 6

-> x3 = 3?, y3 = 2

Node1: x1 = 0, y1 = 0, t1 = 0

Node2: x2 = 4, y2 = 4, t2 = 0

Node2: x3 =?, y3 = ?, t3 = 4

-> x3 = 2?, y3 = 2

I need general algorithm for finding xn+1 and yn+1. Does anyone have some clue how to solve such a problem? Thank you.

link|improve this question

We have clue, but you should still make your homework. – ralu Nov 15 '11 at 23:31
Its not a homework look at my other questions. – Yakov Nov 16 '11 at 8:23
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.