CodeForces - 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”.
问题链接http://codeforces.com/problemset/problem/208/A
问题简述:把一串大写字母中的“WUB”全部去掉再输出
问题分析:遇到char数组里的WUB就把它们变成’0’,再跳过’0’输出即可。注意设立两个flag,来防止最前方跟最后方输出空格
AC通过的C++语言程序如下:

#include <iostream>
using namespace std;
int main()
{
	char p[205] = { '\0' };
	cin >> p;//W=87,U=85,B=66
	int chang = strlen(p);
	int i, j;
	for (int i = 0; i < chang - 2; i++)
	{
		if (p[i] == 87 && p[i + 1] == 85 && p[i + 2] == 66)
		{
			p[i] = '0';
			p[i + 1] = '0';
			p[i + 2] = '0';
		}
	}
	int fl;
	for (int i = 0; i < chang; i++)
	{
		if (p[i] != '0')
		{
			fl = i;
			break;
		}
	}
	for (int i = fl; i < chang; i++)
	{
		if (p[i] == '0') 
		{
			cout << " ";
			for (int j = i; j < chang; j++)
			{
				if (p[j] != '0')
				{
					i = j - 1; break;
				}
			}
		}
		else
		{
			cout << p[i];
		}
	}
	cout << endl;
	return 0;
}
  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值