g
as an adjacency list from the pairs
.ancestor
to keep track of visited nodes.p
of the current node x
, which is the node with the smallest degree in g[x]
that has been visited.
b. If p
exists, check if g[x]
is a subset of g[p]
union {p}
. If not, return 0.
c. If p
does not exist and x
is not the root (degree is not n-1
), return 0.
d. If the degrees of p
and x
are equal, set a flag mul
to True, indicating multiple solutions.mul
is False, otherwise return 2.