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

Обсуждение задачи 1102. Странный диалог

This is unbelievable !!!
Послано sdfsdf 25 июн 2005 00:04
Still TLE!
I'm reading from file not in a character, but in string.
I'm parsing the string from the end, so my program reads each character 1 time (using DFA).
Is there ANY other way to improve perfomance? I guess not.
Please, if someone solved this problem using C++, tell me HOW you did it.
I got AC!
Послано sdfsdf 25 июн 2005 14:44
There is no problem with speed (0.109).
The lines are just too long, and program simply can't read them into strings. The only way to solve this problem is to carefully parse text from beginning reading each character.