zoukankan      html  css  js  c++  java
  • Codeforces Round #130 (Div. 2) A. Dubstep

    题目链接:

    http://codeforces.com/problemset/problem/208/A

    A. Dubstep

    time limit per test:2 seconds
    memory limit per test:256 megabytes
    #### 问题描述 > Vasya works as a DJ in the best Berland nightclub, and he often uses dubstep music in his performance. Recently, he has decided to take a couple of old songs and make dubstep remixes from them. > > Let's assume that a song consists of some number of words. To make the dubstep remix of this song, Vasya inserts a certain number of words "WUB" before the first word of the song (the number may be zero), after the last word (the number may be zero), and between words (at least one between any pair of neighbouring words), and then the boy glues together all the words, including "WUB", in one string and plays the song at the club. > > For example, a song with words "I AM X" can transform into a dubstep remix as "WUBWUBIWUBAMWUBWUBX" and cannot transform into "WUBWUBIAMWUBX". > > Recently, Petya has heard Vasya's new dubstep track, but since he isn't into modern music, he decided to find out what was the initial song that Vasya remixed. Help Petya restore the original song.

    输入

    The input consists of a single non-empty string, consisting only of uppercase English letters, the string's length doesn't exceed 200 characters. It is guaranteed that before Vasya remixed the song, no word contained substring "WUB" in it; Vasya didn't change the word order. It is also guaranteed that initially the song had at least one word.

    输出

    Print the words of the initial song that Vasya used to make a dubsteb remix. Separate the words with a space.

    样例

    sample input
    WUBWUBABCWUB

    sample output
    ABC

    sample input
    WUBWEWUBAREWUBWUBTHEWUBCHAMPIONSWUBMYWUBFRIENDWUB

    sample output
    WE ARE THE CHAMPIONS MY FRIEND

    题意

    给你一串字母,求去掉分割标记"WUB"之后的句子。

    题解

    开一个缓存,直接模拟,匹配一个"WUB"之后把缓存里的值取出来,清空缓存然后跳过这个“WUB"继续做。
    注意事项:退出循环之后要检查一下缓存里面是不是有东西。
    (数据很小,用c++的string类做比较方便。)

    代码

    #include<iostream> 
    #include<cstdio>
    #include<cstring>
    #include<vector> 
    #include<string>
    using namespace std;
    
    const int maxn=1e6+10;
    typedef long long LL;
    
    string str;
    vector<string> ans;
    
    
    int n;
    
    int main(){
    	cin>>str;
    	string tmp="";
    	for(int i=0;i<str.length();i++){
    		if(i+2<str.length()&&str[i]=='W'&&str[i+1]=='U'&&str[i+2]=='B'){
    			if(tmp!=""){
    				ans.push_back(tmp);
    			}
    			tmp="";
    			i+=2;
    		}else{
    			tmp+=str[i];
    		}
    	}
    	if(tmp!="") ans.push_back(tmp);
    	for(int i=0;i<ans.size()-1;i++) cout<<ans[i]<<' ';
    	cout<<ans[ans.size()-1]<<endl;
    	return 0;
    }
  • 相关阅读:
    yum、RPM常用的命令(转)
    10个你可能从未用过的PHP函数(转)
    sphinx 增量索引 及时更新、sphinx indexer索引合成时去旧和过滤办法(转)
    MySQL查询in操作 查询结果按in集合顺序显示(转)
    sphinx配置文件继承
    开源搜索引擎Sphinx 中启动多个搜索进程的方法(转)
    sphinx的简单实例
    Python中的join()函数的用法
    django queryset values&values_list
    Django中的QuerySet查询优化之select_related
  • 原文地址:https://www.cnblogs.com/fenice/p/5682721.html
Copyright © 2011-2022 走看看