我是靠谱客的博主 标致小兔子,最近开发中收集的这篇文章主要介绍codeforces 58A Chat room,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

A. Chat room
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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.

Input

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.

Output

If Vasya managed to say hello, print "YES", otherwise print "NO".

Examples
Input
ahhellllloou
Output
YES
Input
hlelo
Output
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所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(41)

评论列表共有 0 条评论

立即
投稿
返回
顶部