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

Обсуждение задачи 1606. Слалом

How many test cases are there?
Послано obtuseSword 7 мар 2008 09:50
I've got TLE at Test#10,so I want to know how many test cases there are.
If there are only near 10 cases,I'll improve on my program,or else,I'll give it up.
Who can help me?
Re: How many test cases are there?
Послано Vedernikoff Sergey 7 мар 2008 16:22
I suppose there are much more than 10 testcases. My solution works about 0.1 sec on any test, so timelimit is quite enough. Try to create quicker algo...
Re: How many test cases are there?
Послано obtuseSword 11 мар 2008 13:12
Thank you.
I've found that greedy algorithm can solve this problem,thus no longer need dynamic progrmming.
And I've got AC.
Re: How many test cases are there?
Послано igaoxiang 13 мар 2008 16:58
Can you tell me your greedy algorithm?
Re: How many test cases are there?
Послано Chmel_Tolstiy 13 мар 2008 19:21
Greedy? Please tell us your idea.
Re: How many test cases are there?
Послано svr 13 мар 2008 19:52
I think that "greedy" here is terminologic mismatch.
Right termin is "simple constructive" algo.
Candidat to optimum easy to find simply  tracing
trajectory of all points sorted by y- coordinate.
Re: How many test cases are there?
Послано Vedernikoff Sergey 14 мар 2008 17:29
Not mismatch at all. The simplest way to solve the problem is to find a greedy algo.
Re: to find a greedy algo
I solved it with DP+date structure like "the stars" task.
0.578 sec, 44 896 КB...

How to solve it with greedy algo?
Re: to find a greedy algo
Послано Nguyen Dinh Tu (DHSP) 19 апр 2008 00:28
Data structure i used is Binary Index Tree