Codeforces Round #226 (Div. 2)B. Bear and Strings

来源:互联网 发布:昂达主板怎么样知乎 编辑:程序博客网 时间:2024/05/05 05:52

B. Bear and Strings
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

The bear has a string s = s1s2... s|s| (record |s| is the string's length), consisting of lowercase English letters. The bear wants to count the number of such pairs of indices i, j (1 ≤ i ≤ j ≤ |s|), that string x(i, j) = sisi + 1... sj contains at least one string "bear" as a substring.

String x(i, j) contains string "bear", if there is such index k (i ≤ k ≤ j - 3), that sk = bsk + 1 = esk + 2 = ask + 3 = r.

Help the bear cope with the given problem.

Input

The first line contains a non-empty string s (1 ≤ |s| ≤ 5000). It is guaranteed that the string only consists of lowercase English letters.

Output

Print a single number — the answer to the problem.

Sample test(s)
input
bearbtear
output
6
input
bearaabearc
output
20
Note

In the first sample, the following pairs (i, j) match: (1, 4), (1, 5), (1, 6), (1, 7), (1, 8), (1, 9).

In the second sample, the following pairs (i, j) match: (1,  4), (1,  5), (1,  6), (1,  7), (1,  8), (1,  9), (1,  10), (1,  11), (2,  10), (2,  11), (3,  10), (3,  11), (4,  10), (4,  11), (5,  10), (5,  11), (6,  10), (6,  11), (7,  10), (7,  11).


解题报告:

此题题意就是找在一个字符串中,可以找到有多少个bear。由于比赛时的失误,把数组开小了,最终没能过系统评测。很遗憾。

此题解法如下:

当找到一个bear时,先计算后面有多少组,即为(len-(i+3))组,在加上前面的组数,b为上一个b字符对应的坐标(开始为-1),则前面有(i-b-1)*(len-i-3);代码如下:

#include<stdio.h>#include<string.h>char s[5010];int main(){    int i,len,sum,b;    scanf("%s",s);    len=strlen(s);    sum=0;b=-1;    for(i=0;i<len;i++){        if(s[i]=='b'){            if(s[i+1]=='e'&&s[i+2]=='a'&&s[i+3]=='r'){                sum+=len-i-3+(i-b-1)*(len-i-3);                b=i;            }        }    }    printf("%d\n",sum);    return 0;}


0 0