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

Обсуждение задачи 1209. 1, 10, 100, 1000...

Strange - not so simple if u use sqrt - TL(+)
Послано Hristo Stefanov 26 авг 2005 19:11
My solution using sqrt (in C++ using cin and cout) failed because ot TL - it's the same solution that they suggest bellow!!!
 O( N * sqrt(2^31))
Then i did it with binary search :
 O( N * log2(2^31) AC in 0.5secs
Just curious what are the AC times for the sqrt method.
Re: Strange - not so simple if u use sqrt - TL(+)
Послано Madhav 14 июн 2008 13:34
mine got accepted in 0.109sec using sqrt() func.

Edited by author 14.06.2008 13:35
Re: Strange - not so simple if u use sqrt - TL(+)
Послано Pavel Otchertsov 13 ноя 2008 00:41
i've got AC in 0.078.
I used the binary_search and array with positions of "1"
Re: Strange - not so simple if u use sqrt - TL(+)
Послано a_dergachev 14 мар 2009 19:33
0.031 seconds, using one sqrt per line of input