Data for the problem:
2D grid (lattice) of size N x N
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
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.