CF280C-Game on Tree
CF280C-Game on Tree
题目:
题目描述:
Momiji has got a rooted tree, consisting of nodes. The tree nodes are numbered by integers from to . The root has number . Momiji decided to play a game on this tree.
The game consists of several steps. On each step, Momiji chooses one of the remaining tree nodes (let’s denote it by ) and removes all the subtree nodes with the root in node from the tree. Node gets deleted as well. The game finishes when the tree has no nodes left. In other words, the game finishes after the step that chooses the node number .
Each time Momiji chooses a new node uniformly among all the remaining nodes. Your task is to find the expectation of the number of steps in the described game.
输入格式:
The first line contains integer — the number of nodes in the tree. The next lines contain the tree edges. The -th line contains integers , — the numbers of the nodes that are connected by the -th edge.
It is guaranteed that the given graph is a tree.
输出格式:
Print a single real number — the expectation of the number of steps in the described game.
The answer will be considered correct if the absolute or relative error doesn’t exceed .
样例:
样例输入1:
|
|
样例输出1:
|
|
样例输入2:
|
|
样例输出2:
|
|
思路:
实现:
|
|
v1.4.14