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

Обсуждение задачи 1048. Сверхдлинные суммы

And what about solving this problem without any arrays?
Послано Oleg Strekalovsky [Vologda SPU] 13 янв 2009 19:05
I solved this problem on Java.
Memory < 1 М .Time was about 0.8 c. Without any arays!!!
Are your can? =).
Thanks to Fyodor Menshikov.
He was rigth about limitation.
Re: And what about solving this problem without any arrays?
Послано Maxim Dvoynishnikov (Dnipropetrovsk SU) 13 янв 2009 21:50
Using recursive procedure like topological sorting.
Re: And what about solving this problem without any arrays?
Послано SevenEleven [Tartu U] 13 янв 2009 23:05
Recursion implicitly uses array (stack), so used memory will be the same.

Edited by author 13.01.2009 23:26
Re: And what about solving this problem without any arrays?
Послано Yurchuk Maxim, Rybinsk, Liceum #2 14 янв 2009 15:37
And how?
Re: And what about solving this problem without any arrays?
Послано Fyodor Menshikov 17 янв 2009 02:51
Yurchuk Maxim, Rybinsk, Liceum #2 писал(a) 14 января 2009 15:37
And how?

Think.

Look at memory compsumption of first solutions of the problem.
Re: And what about solving this problem without any arrays?
Послано litaoye 30 мар 2009 00:06
if(A+B > 9)
.....
Console.Write(last+1);
if(A+B == 9)
count++;
......
if(A+B < 9)
Console.Write(last);

but it's slow,so it's not a good way