Блог пользователя dark___horse

Автор dark___horse, 3 года назад, По-английски

Given a directed and weighted graph without negative edges in it with n nodes, a source and a destination, what is the shortest path from source to the destination when we are allowed to visit at most k nodes?

Can someone suggest better ways I can use to solve this problem?

link to the problem

my accepted solution to the problem

Thanks in advance!!

  • Проголосовать: нравится
  • +1
  • Проголосовать: не нравится

»
3 года назад, # |
Rev. 2   Проголосовать: нравится 0 Проголосовать: не нравится

I think if k is small you can do Bellman Ford alghoritm except you do first loop k-1 times (n-1 in original)

»
3 года назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

It would be nice if you could give us a link to the problem.