Standard disclaimer: use the algorithms from class, such as…

Standard disclaimer: use the algorithms from class, such as DFS, Explore, BFS, Dijkstra’s (using min-heaps), SCC, Kruskal’s, Prim’s etc., as a blackbox subroutine for your algorithm. If you attempt to modify one of these algorithms you will not receive full credit, even if it is correct. Make sure to explain your algorithm in words (no pseudocode!), explain the correctness of your design, and state and analyze its running time. Faster – and correct – solutions worth more credit. Design an algorithm to solve the following problem:Input: a connected, undirected, weighted graph G = (V,E), and a subset U of the vertices  .Output: a spanning tree of minimal weight in which the vertices of U are leaves (note that there might be other leaves in this tree as well).