zoukankan      html  css  js  c++  java
  • Codeforce:208A. Dubstep (字符串处理,正则表达式)

    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 
    

    Note

    In the first sample: "WUBWUBABCWUB" = "WUB" + "WUB" + "ABC" + "WUB". That means that the song originally consisted of a single word "ABC", and all words "WUB" were added by Vasya.

    In the second sample Vasya added a single word "WUB" between all neighbouring words, in the beginning and in the end, except for words "ARE" and "THE" — between them Vasya added two "WUB".

    解析

    题目给出一个字符串,将字符串中的WUB给删去,如果两个字母间有WUB,则这两个字母用空格隔开

    正常解法?(CF好多人用正则表达式(不会2333)

    #include<bits/stdc++.h>
    const double E = exp(1);
    const int maxn = 1e6 + 10;
    using namespace std;
    char ch[maxn];
    char str[maxn];
    int vis[maxn];
    int main(int argc, char const *argv[])
    {
        cin >> ch;
        int l = strlen(ch);
        int j = 0;
        for (int i = 0; i < l;)
        {
            if (ch[i] == 'W'&&ch[i + 1] == 'U'&&ch[i + 2] == 'B')
            {
                vis[j] = 1;
                i += 3;
                continue;
            }
            else
            {
                str[j++] = ch[i];
                i += 1;
            }
        }
        for (int i = 0; i < j; i++)
        {
            if (vis[i])
            {
                if (i)
                    cout << " ";
            }
            cout << str[i];
    
        }
        cout << endl;
        return 0;
    }
    

    正则表达式

    #include<bits/stdc++.h>//VS好像无法正常编译
    using namespace std;
    int main()
    {
        string s;
        cin >> s;
        cout << regex_replace(s, regex("WUB"), " ");
    }
    

    先记录一下正则表达式的几个资料,等有空学习

    https://blog.csdn.net/qq_34802416/article/details/79307102

    https://www.runoob.com/regexp/regexp-syntax.html

    https://blog.csdn.net/caroline_wendy/article/details/17321639

  • 相关阅读:
    xCode中怎样保存自己的代码块
    2015-03-13---抽象工厂(附代码),
    java nio 缓冲区(一)
    MFC获取各个窗体(体)之间的指针(对象)
    自己动手写神经网络,自己真的能够动手写神经网络嘛?
    Android招財进宝手势password的实现
    QQ三方登录
    UVA 10561
    Vagi单点登录1.0
    《反脆弱》:软件业现成的鲁棒性(Robust)换了个说法变成了作者的发明,按作者的理论推导出许多可笑愚蠢的原则来
  • 原文地址:https://www.cnblogs.com/RioTian/p/13190545.html
Copyright © 2011-2022 走看看