https://csacademy.com/contest/round-47/task/adjacent-vowels/
解法
愚直に2つの隣接する文字に対して、どちらも母音かを判別する。
string vo = "aeiou"; int N; string S; //--------------------------------------------------------------------------------------------------- void _main() { cin >> N >> S; int ans = 0; rep(i, 0, N - 1) { if (vo.find(S[i]) != string::npos && vo.find(S[i + 1]) != string::npos) ans++; } cout << ans << endl; }