codeforces-A - Word Correction

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.


Input

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.

Output

Output the word s after the correction.

Examples
Input
5
weird
Output
werd
Input
4
word
Output
word
Input
5
aaeaa
Output
a
Note

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.

ac代码:

#include <iostream>
#include <stdlib.h>
#include <stdio.h>
using namespace std;

int n;
char a[110];
int key[110];
char check[]={'a','e','i','o','u','y'};

int check1(int x)
{
    for(int i=0;i<6;i++)
    {
        if(a[x]==check[i])
            return 1;
    }
    return 0;
}
void dfs(int x)
{
    key[x]=0;
    if(key[x+1]==1&&check1(x+1))
    {
        dfs(x+1);
    }
}

int main()
{
    cin>>n;
    getchar();
    for(int i=0;i<n;i++)
    {
        cin>>a[i];
        key[i]=1;
    }
    for(int i=0;i<n-1;i++)
    {
        if(check1(i)&&key[i]==1)
        {
            dfs(i);
            key[i]=1;
        }
    }
    for(int i=0;i<n;i++)
    {
        if(key[i]==1)
            cout<<a[i];
    }
    cout<<endl;
    return 0;
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值