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

Обсуждение задачи 1713. Ключевые подстроки

Don't waste your time to binary search without hash
Послано Mahilewets 10 июл 2017 19:05
I was trying to do the following.
Construct suffix automation for each command.
Binary search for length of each key substring.
Binary search works as follows.
For each substring of command of len (lower_bound+upper_bound) /2 check whether it is a substring of another command.
Re: Don't waste your time to binary search without hash
Послано Mahilewets 10 июл 2017 19:06
And it was Time Limit Exceed #7.
So, don't repeat yourself.  Find better solution.
Probably with suffix array,  as posted on the webboard.