|
|
back to boardShow all messages Hide all messagesas the title thanks in advance! Diagram of Voronoy, of course. Well well, the second problem on Timus that should be solved with diagram of Voronoy Well well, the second problem on Timus that should be solved with diagram of Voronoy This problem can be easily solved WITHOUT Voronoi's diagram. I didn't write 1504 yet, but it also doesn't require such complicated methods. I got AC used diagram of voronoi. Kit, please send me your program - efrcom@inbox.ru It's very interesting for me, how solved it without voronoi's diagram. I was not talking about 1504. I was talking about 1369 - the Cockroaches problem. Originally it was possible to solve the task with quadtree. But after new tests added to the task quadtree does not work. Therefore a more sophisticated structure is required. It's not clear. The plants are guaranteed to have integer coordinates. Is that true for Saddam too? If so, it's might be a simple binary search No, it is said that Sassam is somewhere in the circle - not required to be at an integer coordinate. (in fact he is somewhere else but... that's the problem statement - not up to date). -- it would be good to post such question in other topics for the future He might be anywhere within the circle. P.S. It is a pity Saddam III has been hang alone. I wonder when George II will follow him ;) To Kit: I thought it can be solved without Voronoi's diagram, too. But I got Wrong Answer here. Could you send your solution to gaoyihan@gmail.com? I want to check my program. you can only give me the exe-file. Edited by author 11.01.2007 16:24 I think it's binary search + Monte-Carlo. Is such approach correct? Edited by author 11.01.2007 18:16 Why Monte-Carlo? I think, you'll get WA, because answer should be very accurate. Use binary search and bruteforce - O(N^3*logN), AC in ~ 0.25 secs. I think it's like this. The problem is how to define if for the given radius r the original circle is completely covered? (I don't think that there is a straight formula for 300 points). Therefore I just generate 50 points randomly and for each check does it belong to one of the inner circles or not. If there is a point that does not belong to any of the inner circle, the radius is not big enough, otherwise it's big enough. The binary search is obvious. How do you check the coverage with bruteforce? Any hint or algo? If you drop only 50 points, you'll not detect many little "white spaces" (when, for example, current radius 1e-3 less, than optimal. Obviously, such a solution will get WA. How to check coverage with bruteforce? Intersect any two circles and consider epsilon neighborhood of their common points... Thanks a lot. But perhaps if I increase the number of random points (for each check a separate set of points), I'll get AC (if not from the first time, than from the second thanks to the random :) To my mind, it's practically impossible. You should check (1000/1e-5)^2 ~ 10^16 points on every step of binsearch to catch "little whitespaces". Quadrotrees can help you a little, but... I don't understand you solution tell me more If you drop only 50 points, you'll not detect many little "white spaces" (when, for example, current radius 1e-3 less, than optimal. Obviously, such a solution will get WA. How to check coverage with bruteforce? Intersect any two circles and consider epsilon neighborhood of their common points... Your idea is very good, but how you did it so fast? I have TL16 Apply some optimixation techniques - precalc, for instance... Apply some optimixation techniques - precalc, for instance... Now I have WA17 I do not understand what points should we check If we will check only neighboor points of intersection any 2 circles - it's not right For example 2 1000 1000 0 999 0 Right answer is 1999 But if we will check radius 1000 then both intersection points will lie out of main circle For each two crossing circles (crossing inside main circle) there must be third one which covers intersection point of the first two circles. can you tell me more about your solution how can you solve this problem without the diagram Where can I read about diagram of Voronoy? Preparata, Shajmos. Computational geometry. An introdution. |
|
|