Minimum Spanning Trees
Authors: Benjamin Qi, Andrew Wang, Kuan-Hung Chen
Contributor: Neo Wang
Finding a subset of the edges of a connected, undirected, edge-weighted graph that connects all the vertices to each other of minimum total weight.
To review a couple of terms:
- An undirected edge is an edge that goes both ways
- A connected graph is a graph of vertices such that each vertex can reach every other vertex using undirected edges.
- A spanning tree is a set of edges that forms a tree and contains every vertex in the original graph
- A minimum spanning tree is a spanning tree such that the sum of edge weights are minimized
Focus Problem – try your best to solve this problem before continuing!
Kruskal's
Resources | ||||
---|---|---|---|---|
CPH | ||||
cp-algo | ||||
cp-algo | ||||
CP2 | ||||
alexyd88 |
Kruskal's Algorithm finds the MST by greedily adding edges. For all edges not yet in the MST, we can repeatedly add the edge of minimum weight to the MST except when adding edges that would forms a cycle. This can be done by sorting the edges in order of non-decreasing weight. Furthermore, we can easily determine whether adding an edge will create a cycle in constant time using Union Find. Note that since the most expensive operation is sorting the edges, the computational complexity of Kruskal's Algorithm is .
Here's an animation of how the algorithm works:
Implementation
C++
Resources | ||||
---|---|---|---|---|
Benq (from KACTL) | Disjoint Set Union + Kruskal |
#include "DSU.h"template <class T> T kruskal(int N, vector<pair<T, pi>> ed) {sort(all(ed));T ans = 0;DSU D;D.init(N); // edges that unite are in MSTtrav(a, ed) if (D.unite(a.s.f, a.s.s)) ans += a.f;return ans;}
Java
public static HashMap<Integer, ArrayList<Integer>> MST;public static PriorityQueue<Edge> pq; // contains all edges// Assumes that DSU code is includedpublic static void kruskal() {while (!pq.isEmpty()) {Edge e = pq.poll();if (find(e.start) != find(e.end)) {MST.get(e.start).add(e.end);MST.get(e.end).add(e.start);
Solution - Road Reparation
Notice that the road that allows for a "decent route between any two cities," with cost "as small as possible" is the definition of a minimum spanning tree. Thus, we can use our favorite minimum spanning tree algorithm to determine the cost of such a tree by calculating for all edges included in the tree.
However, we must also account for the impossible case, which occurs when any nodes cannot be connected to the tree. Recall that the minimum spanning tree must contain a total of edges, so we can use a variable that is incremented every time we add an edge to the minimum spanning tree. After running Kruskal's, if , then we know that we failed to built the tree properly. Furthermore, since our minimum spanning tree algorithm gurantees no edges are counted twice, we cannot "accidentally" count edges.
C++
#include <algorithm>#include <iostream>#include <limits>#include <vector>using namespace std;struct DSU {vector<int> e;
Java
import java.io.*;import java.util.*;class Kruskal {static int comp;static int disjoint[];static int size[];public static void main(String[] args) throws IOException {BufferedReader sc =new BufferedReader(new InputStreamReader(System.in));
Prim's
Resources | ||||
---|---|---|---|---|
CPH | ||||
cp-algo | ||||
CP2 |
Similar to Dijkstra's, Prim's algorithm greedily adds vertices. On each iteration, we add the vertex that is closest to the current MST (instead of closest to the source in Dijkstra's) until all vertices have been added.
The process of finding the closest vertex to the MST can be done efficiently using a priority queue. After removing a vertex, we add all of its neighbors that are not yet in the MST to the priority queue and repeat. To begin the algorithm, we simply add any vertex to the priority queue.
Complexity
Our implementation has complexity since in the worst case every edge will be checked and its corresponding vertex will be added to the priority queue.
Alternatively, we may linearly search for the closest vertex instead of using a priority queue. Each linear pass runs in time , and this must be repeated times. Thus, this version of Prim's algorithm has complexity . As with Dijkstra, this complexity is preferable for dense graphs (in which ).
Solution - Road Reparation
C++
#include <bits/stdc++.h>using namespace std;long long prim(int n, const vector<vector<pair<long long, int>>> &adj) {long long weight = 0;vector<long long> dist(n, numeric_limits<long long>::max());dist[0] = 0;set<pair<long long, int>> q;// {cost, vertex}q.insert({0, 0});
Java
import java.io.*;import java.util.*;class Prim {static Map<Integer, ArrayList<Edge>> tree;static int N, ct;static long[] dist;static long max = 10000000000000000L;public static void main(String[] args) throws IOException {BufferedReader sc =
Python
import heapqdef prim(n, G):used = [False for _ in range(n)]pq = [(0, 0)]total_weight = 0count = 0while pq:weight, node = heapq.heappop(pq)
Problems
Status | Source | Problem Name | Difficulty | Tags | |
---|---|---|---|---|---|
Old Silver | Easy | Show TagsMST | |||
Gold | Easy | Show TagsMST | |||
CF | Easy | Show TagsMST | |||
CF | Normal | Show TagsMST, Math | |||
AC | Normal | Show TagsDSU | |||
Gold | Normal | Show TagsMST | |||
HR | Normal | Show TagsBinary Search, MST | |||
Gold | Normal | Show TagsMST | |||
JOI | Normal | Show TagsBinary Search, MST | |||
Gold | Normal | Show TagsMST | |||
Platinum | Hard | Show TagsMST | |||
COCI | Hard | Show TagsMST, NT | |||
Google Kickstart | Hard | Show TagsMST | |||
APIO | Insane | Show TagsBitmasks, MST |
The original problem statement for "Inheritance" is in Japanese. You can find a user-translated version of the problem here.
Module Progress:
Join the USACO Forum!
Stuck on a problem, or don't understand a module? Join the USACO Forum and get help from other competitive programmers!