update again
This commit is contained in:
parent
5a893fc267
commit
d107b6d024
@ -1,46 +1,27 @@
|
|||||||
#include<bits/stdc++.h>
|
#include <iostream>
|
||||||
using namespace std;
|
using namespace std;
|
||||||
using ll = long long;
|
|
||||||
|
|
||||||
|
|
||||||
void solve()
|
|
||||||
{
|
|
||||||
string s, words;
|
|
||||||
cin >> s;
|
|
||||||
int i = 0;
|
|
||||||
while (i < s.size())
|
|
||||||
{
|
|
||||||
if (i + 2 < s.size() && s[i] == 'W' && s[i + 1] == 'U' && s[i + 2] == 'B')
|
|
||||||
{
|
|
||||||
i += 3;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (!words.empty())
|
|
||||||
words += ' ';
|
|
||||||
|
|
||||||
while (i < s.size())
|
|
||||||
{
|
|
||||||
if (i + 2 < s.size() && s[i] == 'W' && s[i + 1] == 'U' && s[i + 2] == 'B')
|
|
||||||
break;
|
|
||||||
else
|
|
||||||
{
|
|
||||||
words += s[i];
|
|
||||||
i++;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
cout << words << endl;
|
|
||||||
}
|
|
||||||
|
|
||||||
int main()
|
int main()
|
||||||
{
|
{
|
||||||
ios_base::sync_with_stdio(false);
|
string s;
|
||||||
cin.tie(nullptr);
|
int word = 0;
|
||||||
|
cin >> s;
|
||||||
int TC = 1;
|
for (int i = 0; i < s.size(); i++)
|
||||||
//cin >> TC;
|
{
|
||||||
//cin.ignore();
|
if (s[i] == 'W' && s[i + 1] == 'U' && s[i + 2] == 'B')
|
||||||
while (TC--) solve();
|
{
|
||||||
|
i += 2;
|
||||||
|
if (word)
|
||||||
|
{
|
||||||
|
word=0;
|
||||||
|
cout << " ";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
word = 1;
|
||||||
|
cout << s[i];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user