Dubstep

作者: pro_ven_ce | 来源:发表于2017-07-03 15:19 被阅读28次

传送门

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.

Input

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.

Output

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

Examples

input

WUBWUBABCWUB

output

ABC

input

WUBWEWUBAREWUBWUBTHEWUBCHAMPIONSWUBMYWUBFRIENDWUB

output

WE ARE THE CHAMPIONS MY FRIEND

#include<iostream>
#include<cmath>
#include<algorithm>
#include<vector>
#include<string>
using namespace std;
int main()
{
    string s;
    cin >> s;
    int c = 0;
    int flag = 0;
    for (int i = 0; i < s.size(); i++)
    {
        if (i == s.find("WUB"))
        {
            if (i != 0) //前三个字母不是WUB
            {
                string c = s.substr(0, i);
                if (flag == 0)
                    cout << c;
                else
                    cout << " "<< c;            
                flag = 1;
            }               
            s = s.substr(i + 3, s.size()-1);  //更新s
            i = -1;
        }
    }
    if (s != "")
        cout << " " << s << endl;
    else
        cout << endl;
}

相关文章

  • Dubstep

    传送门 Vasya works as a DJ in the best Berland nightclub, an...

  • Dubstep

    Polycarpus works as a DJ in the best Berland nightclub, a...

  • CodeWars-Dubstep

    今天来聊聊电音(●'◡'●),你最喜欢的DJ是哪位呢?Breakn' A Sweat -Skrillex / Th...

  • 电音分享(安宝宝原创)

    20. Mala - Mirrors (Brownswood) Dubstep音乐在EDM化之后,已经陷入一个相当...

  • 最近听的歌Soundtracks

    整理了本人收集的单曲,太常见的就不列入了 (hiphop, house, dubstep) . Ivan Ave ...

  • 幕落•星辰想当摆大DJ(三)

    喜欢的人对我说“我也喜欢你”,那对我而言就是神谕。——题记 《神谕》 风格:Melodic Dubstep(旋律回...

  • 虽然很多不戴口罩, 但看到有点复苏的人气还是很愉快的丫。 路上路过的车子上也重新开始动感起来, 听到Dubstep...

  • 我在2014跨年夜晚听dubstep

    今天是2014年12月31日。 我在北美的一个农村跨年。汉克蔡邀请我和坤哥去他家吃火锅。 上次冬至他也邀请我去吃火...

网友评论

      本文标题:Dubstep

      本文链接:https://www.haomeiwen.com/subject/klbncxtx.html