Possible Duplicate:
Can you answer this 2009 ACM International Collegiate Programming Contest Finals problem?

Hi,

I am attempting to do question 1 here-> http://cm.baylor.edu/ICPCWiki/attach/Problem%20Resources/2009WorldFinalProblemSet.pdf

and cannot really come up with a good algorithm to solve it :

Basically, there are n planes, n is read in from standard input. There are then n intervals for times in which the planes can arrive, you must compute the largest interval between all planes that is possible. So, say

n = 3

and you are given the inputs

0 10
5 15
10 15

The answer is : 7: 30, the largest possible interval between planes.

Not really sure how I would go about solving this. Any tips ?

link|improve this question
The point of a programming contest is to test your programming skills, not your question asking skills… – Andrew Marshall Mar 23 '11 at 20:26
So helpful, Andrew, thank you :) I assume you realise this question is two years old and I am merely posting a question I am struggling with to study for a future competition, yes? – Xi Hao Mar 23 '11 at 20:28
Exact duplicate of stackoverflow.com/questions/1842587/… – Jim Ferrans Mar 23 '11 at 20:29
Those solutions are quite hard to make sense of. – Xi Hao Mar 23 '11 at 20:32
1  
If you don't understand the existing solutions, I don't like your chances of coming up with a better one, or even a 'good' one. – Andrew Thompson Mar 23 '11 at 20:37
feedback

closed as exact duplicate by Jim Ferrans, Andrew Medico, templatetypedef, Don Roby, Graviton Mar 24 '11 at 0:52

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

For the first plane, select the earliest possible arrival time For the last plane, select the latest possible arrival time

For elements 2 through element n-1:

Search for a midpoint plane by dividing the range between element 1 and element n (Hopefully, that will be close to the element n/2)

recursivly call the same function for element 1 and the midpoint element recursivly call the same function for the element after the midpoint element and element n

That will evenly divide up the time available within the constraints of the planes scheduled windows.

Once you have roughly evenly spaced windows, select the smallest window and test it with its neighboring planes to see if they can shift some to expand the smallest window. Repeat this process until the smallest window can't shift a significent amount.

link|improve this answer
feedback

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