ENG  RUSTimus Online Judge
Online Judge
Задачи
Авторы
Соревнования
О системе
Часто задаваемые вопросы
Новости сайта
Форум
Ссылки
Архив задач
Отправить на проверку
Состояние проверки
Руководство
Регистрация
Исправить данные
Рейтинг авторов
Текущее соревнование
Расписание
Прошедшие соревнования
Правила
вернуться в форум

Обсуждение задачи 1520. Империя наносит ответный удар

Страницы: 1 2 Следующая
Can you give me a hint on how to solve this?
Послано Hao Hu (Ikki @ Nanjing University) 29 дек 2006 12:17
as the title
thanks in advance!
Re: Can you give me a hint on how to solve this?
Послано EfremovAleksei 29 дек 2006 15:02
Diagram of Voronoy, of course.
Re: Can you give me a hint on how to solve this?
Послано SPIRiT 29 дек 2006 18:40
Well well, the second problem on Timus that should be solved with diagram of Voronoy
Re: Can you give me a hint on how to solve this?
Послано SPIRiT 29 дек 2006 18:40
Well well, the second problem on Timus that should be solved with diagram of Voronoy
Re: Can you give me a hint on how to solve this?
Послано Slam [Tartu U] 29 дек 2006 19:05
What one was first?
Re: Can you give me a hint on how to solve this?
Послано Sawe 29 дек 2006 19:12
1504
Re: Can you give me a hint on how to solve this?
Послано Sawe 29 дек 2006 19:13
Where can I read about diagram of Voronoy?
Re: Can you give me a hint on how to solve this?
Послано EfremovAleksei 29 дек 2006 23:05
Preparata, Shajmos. Computational geometry. An introdution.
Re: Can you give me a hint on how to solve this?
Послано Kit 30 дек 2006 12:42
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.
Re: Can you give me a hint on how to solve this?
Послано EfremovAleksei 30 дек 2006 15:34
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.


Timus-1504 does not require voronoi graph either ;) (-)
Послано Dmitry 'Diman_YES' Kovalioff 30 дек 2006 19:25
Re: Timus-1504 does not require voronoi graph either ;) (-)
Послано SPIRiT 4 янв 2007 17:01
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.
Are Saddams coordinates also integer or not
Послано SPIRiT 4 янв 2007 18:57
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
Re: Are Saddams coordinates also integer or not
Послано Peter Ivanov 5 янв 2007 20:01
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
Saddam's coordinates are not necessarily integer (+)
Послано Dmitry 'Diman_YES' Kovalioff 5 янв 2007 20:57
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 ;)
I need an AC solution to this problem
Послано 323232 11 янв 2007 15:58
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
Check your mail. I have sent you an exe-file of my solution (-)
Послано Dmitry 'Diman_YES' Kovalioff 11 янв 2007 16:07
Probability will rule?
Послано SPIRiT 11 янв 2007 18:16
I think it's binary search + Monte-Carlo. Is such approach correct?

Edited by author 11.01.2007 18:16
Re: Probability will rule?
Послано Vedernikoff Sergey 16 янв 2007 15:15
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.
Re: Probability will rule?
Послано SPIRiT 17 янв 2007 19:01
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?
Страницы: 1 2 Следующая