CF482E.ELCA
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
You have a root tree containing n vertexes. Let's number the tree vertexes with integers from 1 to n . The tree root is in the vertex 1 .
Each vertex (except fot the tree root) v has a direct ancestor pv . Also each vertex v has its integer value sv .
Your task is to perform following queries:
- P v u ( u=v ). If u isn't in subtree of v , you must perform the assignment pv=u . Otherwise you must perform assignment pu=v . Note that after this query the graph continues to be a tree consisting of n vertexes.
- V v t . Perform assignment sv=t .
Your task is following. Before starting performing queries and after each query you have to calculate expected value written on the lowest common ancestor of two equiprobably selected vertices i and j . Here lowest common ancestor of i and j is the deepest vertex that lies on the both of the path from the root to vertex i and the path from the root to vertex j . Please note that the vertices i and j can be the same (in this case their lowest common ancestor coincides with them).
输入格式
You have a root tree containing n vertexes. Let's number the tree vertexes with integers from 1 to n . The tree root is in the vertex 1 .
Each vertex (except fot the tree root) v has a direct ancestor pv . Also each vertex v has its integer value sv .
Your task is to perform following queries:
- P v u ( u=v ). If u isn't in subtree of v , you must perform the assignment pv=u . Otherwise you must perform assignment pu=v . Note that after this query the graph continues to be a tree consisting of n vertexes.
- V v t . Perform assignment sv=t .
Your task is following. Before starting performing queries and after each query you have to calculate expected value written on the lowest common ancestor of two equiprobably selected vertices i and j . Here lowest common ancestor of i and j is the deepest vertex that lies on the both of the path from the root to vertex i and the path from the root to vertex j . Please note that the vertices i and j can be the same (in this case their lowest common ancestor coincides with them).
输出格式
Print q+1 number — the corresponding expected values. Your answer will be considered correct if its absolute or relative error doesn't exceed 10−9 .
输入输出样例
输入#1
5 1 2 2 1 1 2 3 4 5 5 P 3 4 P 4 5 V 2 3 P 5 2 P 1 4
输出#1
1.640000000 1.800000000 2.280000000 2.320000000 2.800000000 1.840000000
说明/提示
You have a root tree containing n vertexes. Let's number the tree vertexes with integers from 1 to n . The tree root is in the vertex 1 .
Each vertex (except fot the tree root) v has a direct ancestor pv . Also each vertex v has its integer value sv .
Your task is to perform following queries:
- P v u ( u=v ). If u isn't in subtree of v , you must perform the assignment pv=u . Otherwise you must perform assignment pu=v . Note that after this query the graph continues to be a tree consisting of n vertexes.
- V v t . Perform assignment sv=t .
Your task is following. Before starting performing queries and after each query you have to calculate expected value written on the lowest common ancestor of two equiprobably selected vertices i and j . Here lowest common ancestor of i and j is the deepest vertex that lies on the both of the path from the root to vertex i and the path from the root to vertex j . Please note that the vertices i and j can be the same (in this case their lowest common ancestor coincides with them).