I was trying to Solve this problem
https://www.spoj.pl/problems/DEFKIN/
I came up with an algorithm but it exceeds the time limit of the problem.
I want to know a good algorithm to solve this within the time limit.
Any help is greatly appreciated , Thanks in advanced.
feedback
|
|
I would do it like this: Given Then calculate the empty spaces, e.g. | |||||||||||||||
feedback
|
|
It is easy to see that the set of undefended cells is cartesian product of undefended “holes” in level's walls. So, at first, you don't need to store the whole field in memory — storing just two sequences of towers' coordinates will be enough. The second observation would be that in final field, with all the towers set up, the largest undefended rectangle is equal to cartesian product of two most wide wall holes. Hence its area is equal to product of the holes' lengths. So what we really need to do is to find two most wide wall holes (one on The final note is about input. The towers will probably be shuffled in some way around; but we need a way to derive all holes' lengths. This can easily be done by first sorting the coordinate sequences, separately one and the other, and then calculating {xi+1−xi} and {yi+1−yi} in a single pass. In the same pass we can even find the maximums — multiply them, and you are done. | |||
|
feedback
|
|
Ok this could be another first idea, for each defender there is at least 1 and maximum 4 neighbor white area.
| |||||
feedback
|
|
If you have a 9x6 grid. You have 3 towers. First calculate the smallest gap for the x axis which has 9 elements. We have 3 towers. 9/3 = 3. So we place one tower per 3 elements.
This is a 2 gap max. We can work this about by diving remaining spaces (6) by number of towers (3). 6/3 = 2. Now to the same for y axis. 6 squares. 3 towers. 6/3 = one tower per 2 squares:
1 space max gap (3/3). You now have the x and y coordinate of each tower (0 indexed):
The biggest gap is 2x1 = 2.
I'm 99% sure you can create a general formula for this without the need for loops that returns the x,y pairs of each castle and the biggest penalty area. | |||
|
feedback
|