Codeforces-1008A - Romaji - 水題

題解鏈接

https://www.lucien.ink/archives/305/


題目鏈接

http://codeforces.com/contest/1008/problem/A


題目

Vitya has just started learning Berlanese language. It is known that Berlanese uses the Latin alphabet. Vowel letters are “a”, “o”, “u”, “i”, and “e”. Other letters are consonant.

In Berlanese, there has to be a vowel after every consonant, but there can be any letter after any vowel. The only exception is a consonant “n”; after this letter, there can be any letter (not only a vowel) or there can be no letter at all. For example, the words “harakiri”, “yupie”, “man”, and “nbo” are Berlanese while the words “horse”, “king”, “my”, and “nz” are not.

Help Vitya find out if a word s is Berlanese.

Input

The first line of the input contains the string s consisting of |s| (1|s|100 ) lowercase Latin letters.

Output

Print “YES” (without quotes) if there is a vowel after every consonant except “n”, otherwise print “NO”.

You can print each letter in any case (upper or lower).

Input

sumimasen

Output

YES

Input

ninja

Output

YES

Input

codeforces

Output

NO

Note

In the first and second samples, a vowel goes after each consonant except “n”, so the word is Berlanese.

In the third sample, the consonant “c” goes after the consonant “r”, and the consonant “s” stands on the end, so the word is not Berlanese.


題意

  問是否除了n以外的輔音字母后面都有一個元音字母。


實現

#include <bits/stdc++.h>
char str[1007];
bool vis[1007];
int main() {
    std::cin >> str;
    vis['a'] = vis['e'] = vis['i'] = vis['o'] = vis['u'] = true;
    for (int i = 0; str[i]; i++) {
        if (!vis[str[i]] && str[i] != 'n') {
            if (!vis[str[i + 1]]) return 0 * puts("NO");
        }
    }
    puts("YES");
    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章