A. Chat room1000 / 水题 子序列
Posted 幽殇默
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了A. Chat room1000 / 水题 子序列相关的知识,希望对你有一定的参考价值。
https://codeforces.com/problemset/problem/58/A
#include<bits/stdc++.h>
using namespace std;
string a="hello";
int cnt=0;
int main(void)
{
string s; cin>>s;
for(int i=0;i<s.size();i++)
{
if(s[i]==a[cnt]) cnt++;
}
if(cnt==5) puts("YES");
else puts("NO");
return 0;
}
以上是关于A. Chat room1000 / 水题 子序列的主要内容,如果未能解决你的问题,请参考以下文章
A. Lucky Division1000 / 水题 暴力枚举