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

【BZOJ3450】【Tyvj1952】Easy 可能DP

时间:2015-10-05 18:12:04      阅读:157      评论:0      收藏:0      [点我收藏+]

标签:

联系:

#include <stdio.h>
int main()
{
    puts("转载请注明出处[辗转山河弋流歌 by 空灰冰魂]谢谢");
    puts("网址:blog.csdn.net/vmurder/article/details/46471319");
}

题解:

L 为当前期望后缀 o 长度。
出现一个 x 时。 L 归零。对答案没有不论什么贡献。
出现一个 o 时,这段 o 的长度由 L 变为 L+1 。这段的答案由 L2 变为 L2+2L+1 。对答案贡献为 2L+1
出现一个 ? 时。这段 o 的长度有可能变成 0 ,也可能变成 L+1 ,所以期望 L+12 。对答案贡献则为 0+2L+12

网上说特判的是什么鬼?
哪里有特判。。

代码:

#include <cstdio>
#include <cstring>
#include <iostream>
#include <algorithm>
#define N 301000
using namespace std;
double l,ans;
char s[N];
int n;
int main()
{
//  freopen("test.in","r",stdin);
    int i,j,k;
    scanf("%d%s",&n,s+1);
    for(i=1;i<=n;i++)
    {
        if(s[i]==‘x‘)l=0;
        else if(s[i]==‘o‘)ans+=(++l)*2-1;
        else ans+=(l*2+1)*0.5,l=(l+1)*0.5;
    }
    printf("%.4lf\n",ans);

    return 0;
}

版权声明:本文博主原创文章,博客,未经同意不得转载。

【BZOJ3450】【Tyvj1952】Easy 可能DP

标签:

原文地址:http://www.cnblogs.com/mengfanrong/p/4855977.html

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