#P4756. [Usaco2017 Jan]Promotion Counting
[Usaco2017 Jan]Promotion Counting
Description
The cows have once again tried to form a startup company, failing to remember from past experience that cows make terrible managers! The cows, conveniently numbered (), organize the company as a tree, with cow as the president (the root of the tree). Each cow except the president has a single manager (its "parent" in the tree). Each cow has a distinct proficiency rating, , which describes how good she is at her job. If cow is an ancestor (e.g. a manager of a manager of a manager) of cow , then we say is a subordinate of .
Unfortunately, the cows find that it is often the case that a manager has less proficiency than several of her subordinates, in which case the manager should consider promoting some of her subordinates. Your task is to help the cows figure out when this is happening. For each cow in the company, please count the number of subordinates where .
Format
Input
The first line of input contains .
The next lines of input contain the proficiency ratings for the cows. Each is a distinct integer in the range .
The next lines describe the manager (parent) for cows .
Recall that cow has no manager, being the president.
Output
Please print lines of output. The ith line of output should tell the number of subordinates of cow ii with higher proficiency than cow .
Samples
5
804289384
846930887
681692778
714636916
957747794
1
1
2
3
2
0
1
0
0