project_euler.problem_107.sol1¶
The following undirected network consists of seven vertices and twelve edges with a total weight of 243.  The same network can be represented by the matrix below.
A B C D E F G
A - 16 12 21 - - - B 16 - - 17 20 - - C 12 - - 28 - 31 - D 21 17 28 - 18 19 23 E - 20 - 18 - - 11 F - - 31 19 - - 27 G - - - 23 11 27 -
However, it is possible to optimise the network by removing some edges and still ensure that all points on the network remain connected. The network which achieves the maximum saving is shown below. It has a weight of 93, representing a saving of 243 - 93 = 150 from the original network.
Using network.txt (right click and ‘Save Link/Target As…’), a 6K text file containing a network with forty vertices, and given in matrix form, find the maximum saving which can be achieved by removing redundant edges whilst ensuring that the network remains connected.
- Solution:
We use Prim’s algorithm to find a Minimum Spanning Tree. Reference: https://en.wikipedia.org/wiki/Prim%27s_algorithm
Attributes¶
Classes¶
A class representing an undirected weighted graph. |
Functions¶
|
Find the maximum saving which can be achieved by removing redundant edges |
Module Contents¶
- class project_euler.problem_107.sol1.Graph(vertices: set[int], edges: collections.abc.Mapping[EdgeT, int])¶
A class representing an undirected weighted graph.
- add_edge(edge: EdgeT, weight: int) None ¶
Add a new edge to the graph. >>> graph = Graph({1, 2}, {(2, 1): 4}) >>> graph.add_edge((3, 1), 5) >>> sorted(graph.vertices) [1, 2, 3] >>> sorted([(v,k) for k,v in graph.edges.items()]) [(4, (1, 2)), (5, (1, 3))]
- prims_algorithm() Graph ¶
Run Prim’s algorithm to find the minimum spanning tree. Reference: https://en.wikipedia.org/wiki/Prim%27s_algorithm >>> graph = Graph({1,2,3,4},{(1,2):5, (1,3):10, (1,4):20, (2,4):30, (3,4):1}) >>> mst = graph.prims_algorithm() >>> sorted(mst.vertices) [1, 2, 3, 4] >>> sorted(mst.edges) [(1, 2), (1, 3), (3, 4)]
- edges: dict[EdgeT, int]¶
- vertices: set[int]¶
- project_euler.problem_107.sol1.solution(filename: str = 'p107_network.txt') int ¶
Find the maximum saving which can be achieved by removing redundant edges whilst ensuring that the network remains connected. >>> solution(“test_network.txt”) 150
- project_euler.problem_107.sol1.EdgeT¶