CF765B.Code obfuscation

普及/提高-

通过率:85.53%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Kostya likes Codeforces contests very much. However, he is very disappointed that his solutions are frequently hacked. That's why he decided to obfuscate (intentionally make less readable) his code before upcoming contest.

To obfuscate the code, Kostya first looks at the first variable name used in his program and replaces all its occurrences with a single symbol aa , then he looks at the second variable name that has not been replaced yet, and replaces all its occurrences with bb , and so on. Kostya is well-mannered, so he doesn't use any one-letter names before obfuscation. Moreover, there are at most 26 unique identifiers in his programs.

You are given a list of identifiers of some program with removed spaces and line breaks. Check if this program can be a result of Kostya's obfuscation.

输入格式

In the only line of input there is a string SS of lowercase English letters ( 1<=S<=5001<=|S|<=500 ) — the identifiers of a program with removed whitespace characters.

输出格式

If this program can be a result of Kostya's obfuscation, print "YES" (without quotes), otherwise print "NO".

输入输出样例

  • 输入#1

    abacaba
    

    输出#1

    YES
    
  • 输入#2

    jinotega
    

    输出#2

    NO
    

说明/提示

In the first sample case, one possible list of identifiers would be "number string number character number string number". Here how Kostya would obfuscate the program:

  • replace all occurences of number with a, the result would be "a string a character a string a",
  • replace all occurences of string with b, the result would be "a b a character a b a",
  • replace all occurences of character with c, the result would be "a b a c a b a",
  • all identifiers have been replaced, thus the obfuscation is finished.
首页