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

Обсуждение задачи 1138. Целочисленные проценты

It may be useful: (if You use Dynamic Programming), increasing percentage doesn't exceed 100%
Послано Pasha 28 июн 2005 14:48
Simply use DP with Recurse and You'll get AC!
Re: It may be useful: (if You use Dynamic Programming), increasing percentage doesn't exceed 100%
Послано jedimastex 17 апр 2006 12:51
Can you prove it?
Re: It may be useful: (if You use Dynamic Programming), increasing percentage doesn't exceed 100%
Послано Grandmaster 11 май 2017 02:05
not to much to prove, suppose we have dp[x] where x is an integer number beetwen s and n, we calculate the numbers wich are integer percent of x. for example y is a number wich is an integer percent of x like(y = x*(50/100)), the reccurence is dp[x] = max(dp[x], dp[y] + 1) among all y which are integer percent