retagged by
869 views
0 votes
0 votes
Let G be a simple undirected complete and weighted graph with vertex set V={0,1,2..99}.Weight of edge (u,v) is |u-v| where 0<=u,v<=99 and u not equal to v.Weight of the corresponding maximum weighted spanning tree is (a)4950(b)4451(c)7350(d)7351
retagged by

1 Answer

3 votes
3 votes

Apply kruskal for max weight to find the spanning tree.



v99 is connected to vertices v0 to v49 and  weights are  99+98+97+....+ 50 = 3725

and v0 is connected to v50 to v99 and  weights are  (we will not include 99 again as we have already added) 98+97+....+ 50 = 3626

So finally Weight of the corresponding maximum weighted spanning tree is = 3725 + 3626= 7351




 

Related questions

9 votes
9 votes
1 answer
1
firki lama asked Jan 16, 2017
3,487 views
A complete graph G with 5 nodes has positive weight edges,each edge has a distinct weight with an integer value and maximum weight is equal to number of edges in G.What c...
0 votes
0 votes
1 answer
3
atulcse asked Jan 13, 2022
505 views
How many minimum spanning trees are possible in this graph?
1 votes
1 votes
1 answer
4
Ram Swaroop asked Jan 30, 2019
1,602 views
Consider a simple undirected weighted graph G(V, E) with 10 vertices and 45 edge, assume (u, v) are two vertices weight of a edge is =4lu- vl then the minimum cost of the...