Codeforces Round #526 (Div. 2) C. The Fair Nut and String
Posted heyuhhh
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Codeforces Round #526 (Div. 2) C. The Fair Nut and String相关的知识,希望对你有一定的参考价值。
C. The Fair Nut and String
题目链接:https://codeforces.com/contest/1084/problem/C
题意:
给出一个字符串,找出都为a的子序列(比如ai,aj,ak)满足以下条件的个数:
1.子序列的索引单增(i<j<k);
2.在原字符串中,若ai=aj=ak=a,那么满足i<=k1<j,j<=k2<k 并且 ak1=ak2=b。
通俗点说,就是找这样的子序列个数:要么单个a,要么每个a之间都有一个b。
题解:
我们考虑在字符串末尾增加一个”哨兵“,其值为b。然后用b对a进行分割,每一段a 的个数为ai。
最后统计结果:(a1+1)*(a2+1)*...*(ax+1)-1。这里减去1是因为至少没有什么都不选的情况。
代码如下:
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int N = 1e5+5,MOD = 1e9+7; char s[N]; ll a[N]; int main(){ scanf("%s",s); int len=strlen(s); s[len]=‘b‘; int num=0,cnt=0; for(int i=0;i<=len;i++){ if(s[i]==‘a‘) num++; if(s[i]==‘b‘){ a[++cnt]=num; num=0; } } ll ans = 1; for(int i=1;i<=cnt;i++) ans=ans*(a[i]+1)%MOD; printf("%I64d",ans-1); return 0; }
以上是关于Codeforces Round #526 (Div. 2) C. The Fair Nut and String的主要内容,如果未能解决你的问题,请参考以下文章
Codeforces Round #526 (Div. 2) E. The Fair Nut and Strings
Codeforces Round #526 (Div. 2) C. The Fair Nut and String
Codeforces Round #526 (Div. 2) D. The Fair Nut and the Best Path
Codeforces Round #526 C - The Fair Nut and String /// 组合递推