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

Обсуждение задачи 2102. Миша и криптография

AC with Pollard's rho algorithm
Послано Keworker `~ 14 июл 2024 11:11
I pass this problem with Sieve of Eratosthenes, but i think solution with Pollard's rho algorithm is funnier, and wrote it too.

If you cant pass it with this algo just use all prime modules from 1'000'000'007 to 1'000'001'393.
Re: AC with Pollard's rho algorithm
Послано 👑TIMOFEY👑`~ 15 июл 2024 08:30
Did you check small dividers? ro pollard works very poorly with them
Re: AC with Pollard's rho algorithm
Послано Keworker `~ 18 июл 2024 16:32
If TL let me check all with O(sqrt(n)), I do it. I invoke rho pollard only if can not pass test with O(sqrt(n))