测评会员优惠活动进行中 · 开通 VIP,有效期内测评不限次 VIP 优惠中 · 测评不限次 立即查看

A10889. Fake News (easy)

编程题 普及/提高-

题目描述

As it's the first of April, Heidi is suspecting that the news she reads today are fake, and she does not want to look silly in front of all the contestants. She knows that a newspiece is fake if it contains heidi as a subsequence. Help Heidi assess whether the given piece is true, but please be discreet about it...

输入格式

The first and only line of input contains a single nonempty string $s$ of length at most $1000$ composed of lowercase letters (a-z).

输出格式

Output YES if the string $s$ contains heidi as a subsequence and NO otherwise.

输入输出样例

输入 #1
abcheaibcdi
输出 #1
YES
输入 #2
hiedi
输出 #2
NO

说明/提示

A string $s$ contains another string $p$ as a subsequence if it is possible to delete some characters from $s$ and obtain $p$ .
上一题 去做题 下一题