B. Puzzles
time limit per test 

1 second

memory limit per test 256 megabytes
input standard input
output standard output

Barney lives in country USC (United States of Charzeh). USC has n cities numbered from 1 through n and n - 1 roads between them. Cities and roads of USC form a rooted tree (Barney's not sure why it is rooted). Root of the tree is the city number 1. Thus if one will start his journey from city 1, he can visit any city he wants by following roads.

Some girl has stolen Barney's heart, and Barney wants to find her. He starts looking for in the root of the tree and (since he is Barney Stinson not a random guy), he uses a random DFS to search in the cities. A pseudo code of this algorithm is as follows:

let starting_time be an array of length n
current_time = 0
dfs(v):
current_time = current_time + 1
starting_time[v] = current_time
shuffle children[v] randomly (each permutation with equal possibility)
// children[v] is vector of children cities of city v
for u in children[v]:
dfs(u)

As told before, Barney will start his journey in the root of the tree (equivalent to call dfs(1)).

Now Barney needs to pack a backpack and so he wants to know more about his upcoming journey: for every city i, Barney wants to know the expected value of starting_time[i]. He's a friend of Jon Snow and knows nothing, that's why he asked for your help.

Input

The first line of input contains a single integer n (1 ≤ n ≤ 105) — the number of cities in USC.

The second line contains n - 1 integers p2, p3, ..., pn (1 ≤ pi < i), where pi is the number of the parent city of city number i in the tree, meaning there is a road between cities numbered pi and i in USC.

Output

In the first and only line of output print n numbers, where i-th number is the expected value of starting_time[i].

Your answer for each city will be considered correct if its absolute or relative error does not exceed 10 - 6.

Examples
input
7
1 2 1 1 4 4
output
1.0 4.0 5.0 3.5 4.5 5.0 5.0 
input
12
1 1 2 2 4 4 3 3 1 10 8
output
1.0 5.0 5.5 6.5 7.5 8.0 8.0 7.0 7.5 6.5 7.5 8.0 

题解:这道题还相对比较简单……
题意大概就是求每个点的期望dfs序,显然f[1]=1是递推边界
我们考虑对于某一个节点i,设dfs序为f[i],子树大小为size[i],那么f[i]=f[father]+兄弟的贡献+1
而兄弟产生贡献的话,就取决于dfs的先后顺序,如果先dfs兄弟,会产生size[兄弟]的贡献
那么的兄弟的总贡献就是兄弟的子树大小之和/2,即(size[father]-1-size[rt])/2
那么本题就得到了解决,代码见下:
 #include <cstdio>
#include <cstring>
using namespace std;
const int N=;
int n,fa[N],size[N],e,adj[N];
struct node{int zhong,next;}s[N];
double f[N];
inline void add(int qi,int zhong)
{s[++e].zhong=zhong;s[e].next=adj[qi];adj[qi]=e;}
void dfs1(int rt)
{
size[rt]=;
for(int i=adj[rt];i;i=s[i].next)
dfs1(s[i].zhong),size[rt]+=size[s[i].zhong];
}
void dfs2(int rt)
{
for(int i=adj[rt];i;i=s[i].next)
{int u=s[i].zhong;f[u]=f[rt]+(size[rt]--size[u])/2.0+;dfs2(u);}
}
int main()
{
scanf("%d",&n);
for(int i=;i<=n;i++)
scanf("%d",&fa[i]),add(fa[i],i);
dfs1();f[]=;dfs2();
for(int i=;i<=n;i++)
printf("%.8lf ",f[i]);
}

最新文章

  1. Java算法之字符串反转分析
  2. SQL Server(七)——存储过程
  3. javascript序列化json 第二篇
  4. 你需要知道的swift必备函数 map
  5. python 模块zlib 压缩与解压
  6. 关于AS3获取当前URL和浏览器信息
  7. ListView中使用type需要注意的东西 java.lang.ArrayIndexOutOfBoundsException: length=2; index=2 addScrapView
  8. UVA - 11324 The Largest Clique 强连通缩点+记忆化dp
  9. 基于bootstrap的bootstrap-editable插件实现即时编辑功能
  10. elasticsearch单例模式连接
  11. RabbitMQ 笔记-Exchanges
  12. Python交互图表可视化Bokeh:7. 工具栏
  13. [译] Go数据结构-接口
  14. Pyspider框架
  15. 请教:WCF速度似乎比Remoting慢
  16. 【实践报告】Linux实践三
  17. Spring Security 认证流程
  18. [administrative][CentOS][NetworkManager] networkmanager (二)
  19. Eloqument 学习
  20. Xcode 9 俩个你必须知道的新功能

热门文章

  1. vmware因为软件出过一次复制的错误导致不能复制到主机的解决方法
  2. sql异常 获取数据失败的原因及解决方案
  3. Maven学习(九)-----定制库到Maven本地资源库
  4. python5
  5. 获取安卓app的appPackage和appActivity
  6. [转]50 Tips for Working with Unity (Best Practices)
  7. 【python 3.6】python读取json数据存入MySQL(二)
  8. 四种方式实现波浪效果(CSS效果)
  9. activemq 持久化
  10. 《英文版c++语言程序设计》