Codeforces Round #188 (Div. 2) B. Strings of Power

B. Strings of Power
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

Volodya likes listening to heavy metal and (occasionally) reading. No wonder Volodya is especially interested in texts concerning his favourite music style.

Volodya calls a string powerful if it starts with "heavy" and ends with "metal". Finding all powerful substrings (by substring Volodya means a subsequence of consecutive characters in a string) in a given text makes our hero especially joyful. Recently he felt an enormous fit of energy while reading a certain text. So Volodya decided to count all powerful substrings in this text and brag about it all day long. Help him in this difficult task. Two substrings are considered different if they appear at the different positions in the text.

For simplicity, let us assume that Volodya's text can be represented as a single string.

Input

Input contains a single non-empty string consisting of the lowercase Latin alphabet letters. Length of this string will not be greater than106 characters.

Output

Print exactly one number — the number of powerful substrings of the given string.

Please, do not use the %lld specifier to read or write 64-bit integers in C++. It is preferred to use the cincout streams or the %I64dspecifier.

Sample test(s)
input
heavymetalisheavymetal
output
3
input
heavymetalismetal
output
2
input
trueheavymetalissotruewellitisalsosoheavythatyoucanalmostfeeltheweightofmetalonyou
output
3
Note

In the first sample the string "heavymetalisheavymetal" contains powerful substring "heavymetal" twice, also the whole string "heavymetalisheavymetal" is certainly powerful.

In the second sample the string "heavymetalismetal" contains two powerful substrings: "heavymetal" and "heavymetalismetal".


/*
题目还是满水的 不过TML了一次 WA了一次 
写个blog  纪念一下 涨点教训 
*/
#include<cstdio>
#include<cstring>
#include<cmath>
#include<algorithm>
using namespace std;

__int64 n,ans;
int h[1000005],m[1000005],cnt1,cnt2,cnth,cntm;
char s[1000005];

void solve()
{
	int i,j,len;
	cnt1=cnt2=0;
	len=strlen(s);
	for(i=0;i<=len-5;i++)    // 找出哪些位置出现了“heavy"和"metal" 并将首位置记录在各自数组中
    {
        if(s[i]=='h')
        {
            if(s[i+1]=='e'&&s[i+2]=='a'&&s[i+3]=='v'&&s[i+4]=='y')
            {
                h[++cnt1]=i;
            }
        }
        if(s[i]=='m')
        {
            if(s[i+1]=='e'&&s[i+2]=='t'&&s[i+3]=='a'&&s[i+4]=='l')
            {
                m[++cnt2]=i;
            }
        }
    }
    h[cnt1+1]=100000000;     // 类似贪心 要在最后加一个哨兵 
    m[cnt2+1]=100000005;
    ans=0;
    cnth=cntm=1;
    while(cnth<=cnt1||cntm<=cnt2) // 开始用的二阶循环 导致TMl 其实一阶完全可以搞定
    {
        if(h[cnth]<m[cntm])  // 若不加哨兵 则cnth=cnt1后会一直执行语句一
        {
            cnth++;
        }
        else          // 同理m[]也要加哨兵  开始m[]没加WA了一次
        {
            ans+=cnth-1;
            cntm++;
        }
    }
}
int main()
{
	int i,j,t;
	while(gets(s)!=NULL)
	{
		solve();
		printf("%I64d\n",ans);
	}
	return 0;
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值