Skip to main content

Edge Coloring of Graph

Vizing's theorem states that every simple undirected graph may be edge colored using a number of colors that is at most one larger than the maximum degree of the graph. At least Δ colors are always necessary, so the undirected graphs may be partitioned into two classes: "class 1" graphs for which Δ colors suffice, and "class 2" graphs for which colors are necessary.

In general, optimal edge coloring is NP-complete, so it is very unlikely that a polynomial time algorithm exists.

Planar graphs of maximum degree at least 7 are of class 1. Maximum degree 6 is also conjectured to be of class 1 but is yet unproved.

Misra & Gries Edge Coloring Algorithm

Paper: https://www.cs.utexas.edu/users/misra/psp.dir/vizing.pdf

Code:

Test: https://www.acmicpc.net/problem/10446

The Misra & Gries edge coloring algorithm finds an edge coloring of any graph. The coloring produces uses at most colors, where is the maximum degree of the graph. This is optimal for some graphs, and by Vizing's theorem it uses at most one color more than the optimal for all others.

Time Complexity: