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

Codeforces 235B Let's Play Osu! 概率dp(水

时间:2014-10-29 14:56:09      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:blog   http   io   os   ar   for   on   2014   log   

题目链接:点击打开链接

给定n表示有n个格子

下面每个格子为O的概率是多少。

对于一段连续 x 个O的价值就是 x*x ;

问:

获得的价值的期望是多少。

思路:

把公式拆一下。。


#include <cstdio>
const int N = 100005;
double dp[N][2], p[N];

int main(){
	int n;
	scanf("%d", &n);
	for(int i = 1; i <= n; i ++) {
		scanf("%lf", &p[i]);
	}
	dp[0][0] = dp[0][1] = 0;
	double ans = 0;
	for(int i = 1; i <= n; i ++) {
		dp[i][0] = dp[i-1][0] * p[i] + p[i];
		dp[i][1] = dp[i-1][1] + 2 * dp[i][0] - p[i];
	}
	printf("%.10f\n", dp[n][1]);
	return 0;
}


Codeforces 235B Let's Play Osu! 概率dp(水

标签:blog   http   io   os   ar   for   on   2014   log   

原文地址:http://blog.csdn.net/qq574857122/article/details/40585119

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