
There is a family tree rooted at 0 consisting of n nodes numbered 0 to n - 1 . You are given a 0-indexed integer array parents , where parents[i] is the parent for node i . Since node 0 is the root , parents[0] == -1 .
There are 10 ^5 genetic values, each represented by an integer in the inclusive range [1, 10 ^5 ] . You are given a 0-indexed integer array nums , where nums[i] is a distinct genetic value for node i .
Return an array ans of length n where ans[i] is the smallest genetic value that is missing from the subtree rooted at node i .
The subtree rooted at a node x contains node x and all of its descendant nodes.
n == parents.length == nums.length2 <= n <= 10 ^50 <= parents[i] <= n - 1 for i != 0parents[0] == -1parents represents a valid tree.1 <= nums[i] <= 10 ^5Each nums[i] is distinct.