【Codeforces 729 A Interview with Oleg 】

4098 단어 codeforces
A. Interview with Oleg time limit per test 1 second memory limit per test 256 megabytes input standard input output standard 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 * * *
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; }

좋은 웹페이지 즐겨찾기