[HELP] Why does my code not work for this graph problem?

Revision en1, by tensaida, 2018-12-25 16:07:58

I've been trying to solve this problem.

Here's my approach: I used Dijkstra, where W(u, v) is the minimum number of orders required to get from the starting vertex to v. To find out if I needed an order at a vertex, I maintained a set of "available" vertices from a given vertex (i.e. outdegree), removing a vertex once it's explored.

Here's my solution.

All help is appreciated!

Tags graph newbie, dijkstra, #201 (div 1), stuck

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en1 English tensaida 2018-12-25 16:07:58 531 Initial revision (published)