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

UVA - 11427 Expect the Expected

时间:2018-07-11 14:50:46      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:expec   const   期望   程序   class   style   开头   bit   item   

题面在这里!

 

    lrj蓝书经典题。

    可以先dp出来每个晚上输的概率,然后随便概率生成函数就可以算出来期望天数。

    一个更简单的方法是解方程,设x为期望天数,p为没晚上输的概率,然后过程就如程序开头的备注了。

 

// x = p + (1-p)*(1+x)
// x = p + 1+x-p-px
// px = 1 => x = 1/p
#include<bits/stdc++.h>
#define ll long long
using namespace std;
#define D double
const int N=105;
const D eps=1e-7;

int T,n,p[2];
D P,f[N],sum;
char c;

inline void solve(){
	f[0]=1;
	for(int i=1;i<=n;i++)
		for(int j=floor(i*P+eps);j>=0;j--) f[j]=f[j-1]*P+f[j]*(1-P);
	for(int i=0;i<=n;i++) sum+=f[i];
}

int main(){
	scanf("%d",&T);
	for(int o=1;o<=T;o++){
		scanf("%d%c%d%d",p,&c,p+1,&n),sum=0;
		fill(f,f+n+1,0),P=p[0]/(D)p[1];
		solve(),printf("Case #%d: %d\n",o,(int)floor(1/sum+eps));
	}
	return 0;
}

 

UVA - 11427 Expect the Expected

标签:expec   const   期望   程序   class   style   开头   bit   item   

原文地址:https://www.cnblogs.com/JYYHH/p/9293700.html

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