概率与期望
Posted 执||念
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了概率与期望相关的知识,希望对你有一定的参考价值。
https://vjudge.net/problem/LightOJ-1030
#include<iostream>
#include<stdio.h>
#include<cstring>
using namespace std;
int main()
{
int t;
cin>>t;
int a[110];
double dp[110];
for(int i=1;i<=t;i++)
{
memset(a,0,sizeof(a));
memset(dp,0,sizeof(dp));
dp[1]=1;
int n,h;
double ans=0;
cin>>n;
for(int j=1;j<=n;j++)
cin>>a[j];
for(int j=1;j<=n;j++){
if(n-j<6)
h=n-j;
else
h=6;
for(int k=1;k<=h;k++)
{
dp[j+k]+=dp[j]*1.0*1/h;
}
ans+=1.0*a[j]*dp[j];
}
printf("Case %d: %lf\n",i,ans);
}
return 0;
}
https://vjudge.net/problem/LightOJ-1027
以上是关于概率与期望的主要内容,如果未能解决你的问题,请参考以下文章