zoukankan      html  css  js  c++  java
  • CodeForces 729A Interview with Oleg (模拟)

    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.

    Example
    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替换成,ogogogo同样视为ogo,只用一个替代。

    题解:

    模拟即可。

    #include<iostream>
    #include<cstring>
    using namespace std;
    int main()
    {
    	int n;
    	char s[105];
    	while(cin>>n>>s)
    	{
    		for(int i=0;i<n;i++)
    		{
    			if(i+2<n&&s[i]=='o'&&s[i+1]=='g'&&s[i+2]=='o')
    			{
    				cout<<"***";
    				i+=2;
    				while(s[i+1]=='g'&&s[i+2]=='o')
    					i+=2;
    			}
    			else
    			{
    				cout<<s[i];
    			}
    		}
    		cout<<endl;
    	}
    	return 0;
    }
  • 相关阅读:
    postman环境和全局变量设置语句
    2016 GitHub章鱼猫观察报告之开源统计
    Multiload-ng
    忠告初学者学习Linux系统的8点建议
    真有用?Snap和Flatpak 通吃所有发行版的打包方式。
    教你如何在Kali Linux 环境下设置蜜罐?
    下一代GNU/Linux显示服务Wayland 1.12正式发布
    为 Github 创造 Integration
    简单易懂的crontab设置工具集
    爆料喽!!!开源日志库Logger的剖析分析
  • 原文地址:https://www.cnblogs.com/orion7/p/7703598.html
Copyright © 2011-2022 走看看