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

Обсуждение задачи 1934. Чёрная метка

I'm getting WA on TEST 2 can anybody give a test plz???!
Послано kerpoo 15 авг 2015 22:01
used dijkstra and update the probability (distance in normal dijkstra) of node v for v like below:
dis[father[v]]=dis[father[v]] + edge(father[v],v).value - dis[father[v]]*edge(father[v],v).value

is there any problem?!

I'm not good enough in probability theory...

Edited by author 15.08.2015 22:01
Re: I'm getting WA on TEST 2 can anybody give a test plz???!
Послано S.Ged 15 авг 2015 23:10
dijkstra doesn't do the job

the problem asks for the <<shortest path>> even if it isn't the minimum of all ( but of course it should be minimal among all shortest path)
Re: I'm getting WA on TEST 2 can anybody give a test plz???!
Послано kerpoo 15 авг 2015 23:35
tnx!
I wasn't so careful in reading the problem!