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

CodeForces - 805D Minimum number of steps

时间:2018-02-07 22:46:44      阅读:208      评论:0      收藏:0      [点我收藏+]

标签:blog   const   namespace   c++   前缀   strlen   com   name   png   

技术分享图片

技术分享图片

题目大意:把一个串里的ab改为bba,求最少改几次就没有ab了

具体思路:可以把一次操作看成把a放到b右边,再增加一个b,要求把所有的a都移到b右边

发现1个a过一个b要1次操作

2个a过一个b要1+2次操作

3个a过一个b要1+2+4次操作

那么搞个前缀和优化就可以算答案啦

AC代码

#include<bits/stdc++.h>
#define int long long
using namespace std;
int sum[2000000],po[2000000],n,i,j,tot,ans;
const int ha=1e9+7;
char s[2000000];
main()
{
    scanf("%s",s);
    n=strlen(s);
    po[0]=1;
    for(i=1;i<=1000000;i++)po[i]=po[i-1]*2%ha;
    for(i=0;i<=1000000;i++)sum[i]=(sum[i-1]+po[i])%ha;
    for(i=0;i<n;i++)
    {
        if(s[i]==a)tot++;
        else ans=(ans+sum[tot-1])%ha;
    }
    printf("%lld",ans);
    return 0;
}

 

CodeForces - 805D Minimum number of steps

标签:blog   const   namespace   c++   前缀   strlen   com   name   png   

原文地址:https://www.cnblogs.com/Orange-User/p/8428424.html

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