Directed (Optimum Branchings), Super Dense MST

A minimum spanning tree (MST) or minimum weight spanning tree is a subset of the edges of a connected; edge-weighted undirected graph that connects all the vertices together; without any cycles and with the minimum possible total edge weight. Here, we're given a directed graph with a root and E=Ω(V2)E=\Omega(V^2) edges, and we wish to find a spanning arborescence of minimum weight that is rooted at the root.

Parameters

  • VV: number of vertices
  • EE: number of edges
  • UU: maximum edge weight

Filters

Computational Model

Randomization

Approximation

Algorithms Table

Displaying 1 of 1 algorithms

See more
Tarjan (directed, dense)1987O(V^2)O(E)

Reductions Table

Insuffient Data to display table

Other relevant algorithms

Insuffient Data to display table