概述
Vasya has recently learned to type and log on to the Internet. He immediately entered a chat room and decided to say hello to everybody. Vasya typed the word s. It is considered that Vasya managed to say hello if several letters can be deleted from the typed word so that it resulted in the word "hello". For example, if Vasya types the word "ahhellllloou", it will be considered that he said hello, and if he types "hlelo", it will be considered that Vasya got misunderstood and he didn't manage to say hello. Determine whether Vasya managed to say hello by the given word s.
The first and only line contains the word s, which Vasya typed. This word consisits of small Latin letters, its length is no less that 1 and no more than 100 letters.
If Vasya managed to say hello, print "YES", otherwise print "NO".
ahhellllloou
YES
hlelo
NO
AC:
#include<bits/stdc++.h>
using namespace std;
int main()
{
char p[110];
gets(p);
int len=strlen(p);
int a=len,b=len,c=len,d=len;
int flag=0;
for(int i=0;i<len;i++)
{
if(p[i]=='h')
{
a=i+1;
break;
}
}
for(int i=a;i<len;i++)
{
if(p[i]=='e')
{
b=i+1;
break;
}
}
for(int i=b;i<len;i++)
{
if(p[i]=='l')
{
c=i+1;
break;
}
}
for(int i=c;i<len;i++)
{
if(p[i]=='l')
{
d=i+1;
break;
}
}
for(int i=d;i<len;i++)
{
if(p[i]=='o')
{
flag=1;
}
}
if(flag)
printf("YESn");
else
printf("NOn");
}
最后
以上就是标致小兔子为你收集整理的codeforces 58A Chat room的全部内容,希望文章能够帮你解决codeforces 58A Chat room所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复