The obvious approach: pick one child's set as the base, then insert all elements from other children's sets one by one. For each child set of size , you do insertions. If you have sets of sizes , you pay operations per node.
This seems fine per node, but across the whole tree it breaks down. The total cost depends on which set you choose as the base. Choose poorly and you hit quadratic time.