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

Обсуждение задачи 1351. Хороший гнусмас – мёртвый гнусмас

Slightly wrong tests
Послано Fyodor Menshikov 20 янв 2009 23:09
In statement: 1 <= |X1| , |Y1|, |X2|, |Y2| <= 30000
0 <= |Xi|, |Yi| <= 30000

In test 6 there is number with absolute value 30001. This number cannot cause overflow, but it is not good that the test does not correspond to the statement.
Fixed (-)
Послано Sandro (USU) 20 янв 2009 23:50
Re: Fixed (-)
Послано Vedernikoff Sergey (HSE: EconomicsForever!) 21 янв 2009 01:53
The term "slightly wrong" sounds funny, especially in sport programming. What if I use hash that relies upon the fact that |X| <= 30000???

Edited by author 21.01.2009 01:53
Re: Fixed (-)
Послано Fyodor Menshikov 21 янв 2009 02:06
It would be funny if you use hash in this problem.

This is a geometrical problem, the only danger is to exceed int limit. 30001 was definitely not dangerous in this problem. But it hindered defensive programming style of debugging.
Re:
Послано Q 22 янв 2009 18:46
The code removed after getting AC.

Edited by author 25.01.2009 07:03