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

Обсуждение задачи 1161. Stripies

GOT ac
Послано yangdong 18 окт 2010 17:52
I've read it for 15 min..AC at the first time...
sort all the integer to a descending sequence.
repeat for n-1 times:
combine a[1] and a[2](2sqrt(xy))
delete(a[1],a[2])
insert the new real number into the sequence
and remember to keep the descending.

print the final a[1].
Re: GOT ac
Послано AYUBXON UBAYDULLAYEV (IT of TUIT) 25 май 2012 17:24
what's mean here is delete(a[1],a[2]); don't understand
Re: GOT ac
Послано Anupam Ghosh, Wipro Technologies 18 окт 2012 20:28
Hi Ayubxon,
             delete means "no longer worry about a[1] and a[2]".
You may not actually delete the values from array.

Regards
Anupam
Re: GOT ac
Послано AYUBXON UBAYDULLAYEV TUIT 27 ноя 2012 18:08
Thanks