3367. Maximize Sum of Weights after Edge Removals
3367. Maximize Sum of Weights after Edge Removals
Description
There exists an undirected tree with n
nodes numbered 0
to n - 1
. You are given a 2D integer array edges
of length n - 1
, where edges[i] = [ui, vi, wi] indicates that there is an edge between nodes ui and vi with weight wi in the tree.