【Codeforces 729 A Interview with Oleg 】
4098 단어 codeforces
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 * * *
ogo,ogogo,ogogo와 같은 문자열은 모두 "*"로 바꿀 수 있습니다~~그리고 변환하면 됩니다~
AC 코드:
#include
using namespace std;
char st[110],st1[110];
int main()
{
int n, k = 0;
scanf("%d",&n);
scanf("%s",st);
for(int i = 0 ; i < n ; i++){
int ok = 0;
if(st[i] == 'o' && st[i + 1] == 'g' && st[i + 2] == 'o'){
ok = 1;
while(st[i] == 'o' && st[i + 1] == 'g' && st[i + 2] == 'o')
i += 2;
}
if(ok){
st1[++k] = '*';
st1[++k] = '*';
st1[++k] = '*';
}
else
st1[++k] = st[i];
}
printf("%s
",st1 + 1);
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Codeforces Round #715 Div. 2C The Sports Festival: 구간 DP전형구간 DP의 초전형. 이하, 0-indexed. 입력을 정렬하여 어디서나 시작하고 최적으로 좌우로 계속 유지하면 좋다는 것을 알 수 있습니다. {2000})$의 주문이 된다. 우선, 입력을 소트하여 n개의 요소를 $...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.