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

Обсуждение задачи 1031. Железнодорожные билеты

can DP solve this data?
Послано cyc 31 июл 2009 10:05
3 100 10000 100 101 102
35
1 34
0
3
3
3
...
3
99
100

i guess the answer is 201(1-35-34)
can DP give this answer? i think only ShortestPath can give this answer.
Re: can DP solve this data?
Послано Sergey Lazarev (MSU Tashkent) 31 июл 2009 15:03
It's wrong answer. Right answer is 101.
Re: can DP solve this data?
Послано bill125 24 янв 2012 09:35
I agree with you.

for example

1 2 100 100 100 1
4
2 3
2
3
99

when I used this input,my AC programm gave the answer 100 while the correct answer was 2
Re: can DP solve this data?
Послано Smilodon_am [Obninsk INPE] 10 май 2012 20:35
Distances are different(!) integer numbers given in ascending order.
So this test isn't correct.

Edited by author 10.05.2012 20:35
Re: can DP solve this data?
Послано sylap 26 авг 2013 02:18
hey @bill125
if L2 < X ≤ L3  then cost is C3. // from table in problem statement
if  2 < X ≤ 100 then cost is 1 .
As X is 1 you can't use C3=1.