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 ss . 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 ss .
输入格式The first and only line contains the word ss , 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".
题意翻译给定一个字符串使删除这个字符串的一些字符使它变成“hello”
输入输出样例输入 #1
ahhellllloou
输出 #1
YES
输入 #2
hlelo
输出 #2
NOCODE
#include#include #include using namespace std; string str; queue q; int main(){ cin >> str; q.push('h'); q.push('e'); q.push('l'); q.push('l'); q.push('o'); for(int i=0; i AC记录:CHAT ROOM AC 记录_m0_61067261的博客-CSDN博客



