栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

CF58A Chat room

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

CF58A Chat room

题目描述

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

NO

CODE
#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博客
转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/295468.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号