A. Interview with Oleg
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard output
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
7
aogogob
output
a@@b
input
13
ogogmgogogogo
output
@@gmg@
input
9
ogoogoogo
output
@@@@@
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@@”.
解题思路:
水题,这里’*’和MarkDown语法有冲突,换成’@’了。
AC代码:
#include<bits/stdc++.h>
using namespace std;
int main()
{
int n;
char s[100];
cin>>n;
cin>>s;
for(int i = 0;s[i];)
{
if(s[i] == 'o' && s[i+1] == 'g' && s[i+2] == 'o')
{
i += 3;
while(s[i] == 'g' && s[i+1] == 'o') i += 2;
cout<<"***";
}
else cout<<s[i],i++;
}
return 0;
}
本文介绍了一个简单的字符串处理问题,即如何将一段没有标点符号的采访记录中的特定填充词替换为统一的标记。通过示例展示了输入输出格式,并提供了一段C++代码实现这一功能。
135

被折叠的 条评论
为什么被折叠?



