A11607 | Word Correction
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Victor tries to write his own text editor, with word correction included. However, the rules of word correction are really strange.
Victor thinks that if a word contains two consecutive vowels, then it's kinda weird and it needs to be replaced. So the word corrector works in such a way: as long as there are two consecutive vowels in the word, it deletes the first vowel in a word such that there is another vowel right before it. If there are no two consecutive vowels in the word, it is considered to be correct.
You are given a word $s$ . Can you predict what will it become after correction?
In this problem letters a, e, i, o, u and y are considered to be vowels.
Victor thinks that if a word contains two consecutive vowels, then it's kinda weird and it needs to be replaced. So the word corrector works in such a way: as long as there are two consecutive vowels in the word, it deletes the first vowel in a word such that there is another vowel right before it. If there are no two consecutive vowels in the word, it is considered to be correct.
You are given a word $s$ . Can you predict what will it become after correction?
In this problem letters a, e, i, o, u and y are considered to be vowels.
输入格式
The first line contains one integer $n$ ( $1<=n<=100$ ) — the number of letters in word $s$ before the correction.
The second line contains a string $s$ consisting of exactly $n$ lowercase Latin letters — the word before the correction.
The second line contains a string $s$ consisting of exactly $n$ lowercase Latin letters — the word before the correction.
输出格式
Output the word $s$ after the correction.
输入输出样例
输入 #1
5 weird
输出 #1
werd
输入 #2
4 word
输出 #2
word
输入 #3
5 aaeaa
输出 #3
a
Explanations of the examples:
1. There is only one replace: weird  werd;
2. No replace needed since there are no two consecutive vowels;
3. aaeaa aeaa aaa aa  a.
1. There is only one replace: weird  werd;
2. No replace needed since there are no two consecutive vowels;
3. aaeaa aeaa aaa aa  a.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted