2
results
for 树
You are given an array
pairs
, where \(pairs[i] = [x_i, y_i]\), and:- There are no duplicates.
- \(x_i < y_i\)
Let
ways
be the number of rooted trees that satisfy the following conditions:- The tree consists of nodes whose values appeared in
pairs
. - A pair \([x_i, y_i]\) exists in
pairs
if and only if \(x_i\) is an ancestor of \(y_i\) or \(y_i\) is an ancestor of \(x_i\). - Note: the tree does not have to be a binary tree.
Two ways are considered to be different if there is at least one node that has different parents in both ways.
Return:
0
ifways == 0
1
ifways == 1
2
ifways > 1
A rooted tree is a tree that has a single root node, and all edges are oriented to be outgoing from the root.
An ancestor of a node is any node on the path from the root to that node (excluding the node itself). The root has no ancestors.