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

Обсуждение задачи 1220. Stacks

Why MLE? I have statick structures (+)
Послано Tbilisi SU: Andrew Lutsenko 11 окт 2006 20:42
var stacks:array[1..1000] of string;
    n,i,j,t1,t2,l:longint;
    err:integer;
    st:string;

That's all. Why MLE10? In every 4 bytes of a string i write integer and on 'pop' recover it. So the sum of the lengths of the strings can't be more than 4*100000 bytes. Plus some bytes for compiler is approximately 700 kb. Why it takes more than 800?????
Re: Why MLE? I have statick structures (+)
Послано Midnight_Kitty 18 окт 2006 16:33
string is a dynamic array, Pascal can allocate memory for it with some reserve. I think its your problem