概率与期望

Posted lmjer

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了概率与期望相关的知识,希望对你有一定的参考价值。

绿豆蛙的期望

#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;

const int maxn=100000+10;

struct my{
    int next;
    int v;
    double w;
};

bool vis[maxn];
int dp[maxn];
int tot,adj[maxn];
int n,m;
double totans;
int in[maxn];
my edge[maxn*2];

void myinsert(int u,int v,int w){
     edge[++tot].next=adj[u];
     edge[tot].v=v;
     edge[tot].w=w;
     adj[u]=tot;
     in[u]++;
}

double dfs(int x){
       if(x==n) return 0;
       //vis[x]=true;
       double ans=0;
       for (int i=adj[x];i;i=edge[i].next){
            int v=edge[i].v;
         //   if(vis[v]) continue;
            ans+=(dfs(v)+edge[i].w)/in[x];
       }
       //totans+=ans;
       return ans;
}

int main(){
    int u,v,w;
    scanf("%d%d",&n,&m);
    for (int i=1;i<=m;i++){
        scanf("%d%d%d",&u,&v,&w);
        myinsert(u,v,w);
    }
    //dfs(1);
    printf("%.2lf
",dfs(1));
return 0;
}

 

以上是关于概率与期望的主要内容,如果未能解决你的问题,请参考以下文章

解题报告(十七)概率与期望(概率论)(ACM / OI)

「总结」: 概率与期望

bzoj 4008 亚瑟王 - 动态规划 - 概率与期望

期望与概率dp

整理数学期望和概率DP

概率与期望入门