前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >【Codeforces 738A】Interview with Oleg

【Codeforces 738A】Interview with Oleg

作者头像
饶文津
发布2020-06-02 11:12:24
5820
发布2020-06-02 11:12:24
举报
文章被收录于专栏:饶文津的专栏饶文津的专栏

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

Polycarp has interviewed Oleg and has written the interview down without punctuation marks and spaces to save time. Thus, the interview is now a string s consisting of n lowercase English letters.

There is a filler word ogo in Oleg's speech. All words that can be obtained from ogo by adding go several times to the end of it are also considered to be fillers. For example, the words ogo, ogogo, ogogogo are fillers, but the words go, og, ogog, ogogog and oggo are not fillers.

The fillers have maximal size, for example, for ogogoo speech we can't consider ogo a filler and goo as a normal phrase. We should consider ogogo as a filler here.

To print the interview, Polycarp has to replace each of the fillers with three asterisks. Note that a filler word is replaced with exactly three asterisks regardless of its length.

Polycarp has dealt with this problem in no time. Can you do the same? The clock is ticking!

Input

The first line contains a positive integer n (1 ≤ n ≤ 100) — the length of the interview.

The second line contains the string s of length n, consisting of lowercase English letters.

Output

Print the interview text after the replacement of each of the fillers with "***". It is allowed for the substring "***" to have several consecutive occurences.

Examples

input

代码语言:javascript
复制
7
aogogob

output

代码语言:javascript
复制
a***b

input

代码语言:javascript
复制
13
ogogmgogogogo

output

代码语言:javascript
复制
***gmg***

input

代码语言:javascript
复制
9
ogoogoogo

output

代码语言:javascript
复制
*********

Note

The first sample contains one filler word ogogo, so the interview for printing is "a***b".

The second sample contains two fillers ogo and ogogogo. Thus, the interview is transformed to "***gmg***".

就是将ogo、ogogo、ogogogo……输出为***。

这道题我卡了好久,写得很繁杂,最后的代码如下:

代码语言:javascript
复制
#include<cstdio>
#include<cstring>
#define ll long long
using  namespace std;
int d;
char s[1000];
int main(){
    scanf("%d",&d);
    scanf("%s",s);
    int f=0,b=0,e=0,i;
    for(i=0;i<=strlen(s);){
        if(f==0){
            if(s[i]=='o'&&s[i+1]=='g'&&s[i+2]=='o'){
                printf("%.*s",i-e,s+e);
                f=1;
                b=i;
                i+=3;
                e=i;
            }else i++;
        }else if(f==1){
            if(s[i]=='g'&&s[i+1]=='o'){
                i+=2;
                e=i;
            }else {
                f=0;
                printf("***");
            }
        }
    }
    printf("%.*s",i-e,s+e);
    return 0;
}

然后结束后参考了一下别人的代码,重写了一份代码,特别简洁清楚:

代码语言:javascript
复制
#include<cstdio>
char s[101];
int main(){
    scanf("%*d%s",s);
    for(int i=0;s[i];){
        if(s[i]=='o'&&s[i+1]=='g'&&s[i+2]=='o'){
            i++;
            while(s[i]=='g'&&s[i+1]=='o')i+=2;
            printf("***");
        }else
            putchar(s[i++]);
    }
    return 0;
}
本文参与 腾讯云自媒体分享计划,分享自作者个人站点/博客。
原始发表:2016-11-20 ,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体分享计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档