There exists an undirected and unrooted tree with
n
nodes indexed from0
ton - 1
. You are given an integern
and a 2D integer array edges of lengthn - 1
, whereedges[i] = [ai, bi]
indicates that there is an edge between nodesai
andbi
in the tree. You are also given an arraycoins
of sizen
wherecoins[i]
can be either0
or1
, where1
indicates the presence of a coin in the vertexi
.Initially, you choose to start at any vertex in the tree. Then, you can perform the following operations any number of times:
- Collect all the coins that are at a distance of at most
2
from the current vertex, or- Move to any adjacent vertex in the tree.
Find the minimum number of edges you need to go through to collect all the coins and go back to the initial vertex.
Note that if you pass an edge several times, you need to count it into the answer several times.
1 |
|