Beautiful Vertices please explain this question with an

what is meant by parent and children how to identify??

The problem is simple implementation of DFS while maintaining a count of children of the vertices visited. Let u be a vertex and v be its child. Then, check if children[v]>children[u].This way, check for each vertex while traversing the graph in DFS. One important thing to note that actually there are many trees in the input(a graph with no cycles and self loops is a tree). That means , you have to apply DFS for each of these trees.
parent is the root and the children are the nodes which are dependent on parent(which can be identified from the parent).