码迷,mamicode.com
首页 > 其他好文 > 详细

[Codeforces 839C] Journey

时间:2018-10-06 12:03:26      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:continue   oid   space   lse   style   ref   mes   targe   inline   

[题目链接]

         http://codeforces.com/contest/839/problem/C

[算法]

       概率DP

       时间复杂度 : O(N)

[代码]

        

#include<bits/stdc++.h>
using namespace std;
#define MAXN 100010

int tot , n;
int head[MAXN];
bool visited[MAXN];
double f[MAXN];

struct edge
{
        int to , nxt;
} e[MAXN << 1];

template <typename T> inline void chkmax(T &x,T y) { x = max(x,y); }
template <typename T> inline void chkmin(T &x,T y) { x = min(x,y); }
template <typename T> inline void read(T &x)
{
    T f = 1; x = 0;
    char c = getchar();
    for (; !isdigit(c); c = getchar()) if (c == -) f = -f;
    for (; isdigit(c); c = getchar()) x = (x << 3) + (x << 1) + c - 0;
    x *= f;
}
inline void addedge(int u,int v)
{
        tot++;
        e[tot] = (edge){v,head[u]};
        head[u] = tot;
}
inline double dp(int u,int fa)
{
        int cnt = 0;
        if (visited[u]) return f[u];
        for (int i = head[u]; i; i = e[i].nxt)
        {
                int v = e[i].to;
                if (v == fa) continue;
                cnt++;
        }
        if (cnt == 0) 
        {
                visited[u] = true;
                return f[u] = 0;
        }
        f[u] = 1;
        for (int i = head[u]; i; i = e[i].nxt)
        {
                int v = e[i].to;
                if (v == fa) continue;
                f[u] += 1.0 / cnt * dp(v,u);
        }
        visited[u] = true;
        return f[u];
}

int main()
{
        
        read(n);
        for (int i = 1; i < n; i++)
        {
                int u , v;
                read(u); read(v);
                addedge(u,v);
                addedge(v,u);
        }
        memset(visited,false,sizeof(visited));
        printf("%.10lf\n",dp(1,0));
        
        return 0;
    
}

 

[Codeforces 839C] Journey

标签:continue   oid   space   lse   style   ref   mes   targe   inline   

原文地址:https://www.cnblogs.com/evenbao/p/9746822.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!