You are given a rooted tree with n vertices. There is a number written on each leaf (a vertex contains degree 1 and the root node can be a leaf if it has just one child). The interest degree of each vertex is the sum of numbers written on leaves in subtree on this vertex. In each step, you can change the number written on a leaf by 1. How many steps are required to make the interest degree of all of the nodes equal?
Note: You can change the number written on a leaf to negative values.
Input format
Output format
Print the minimum number of steps that are required to make the interest degree of all of the nodes equal.
Constraints
1≤n≤1051≤pi<i0≤ai≤109