A - Irreversible operation

A - Irreversible operation

AtCoder Grand Contest 029:https://atcoder.jp/contests/agc029/tasks/agc029_a


Time Limit: 2 sec / Memory Limit: 1024 MB

Score : 300300 points

Problem Statement

There are N Reversi pieces arranged in a row. (A Reversi piece is a disc with a black side and a white side.) The state of each piece is represented by a string S of length N. If Si=B, the ii-th piece from the left is showing black; If Si=W, the i-th piece from the left is showing white.

Consider performing the following operation:

  • Choose i (1≤i<N) such that the i-th piece from the left is showing black and the (i+1)-th piece from the left is showing white, then flip both of those pieces. That is, the i-th piece from the left is now showing white and the (i+1)-th piece from the left is now showing black.

Find the maximum possible number of times this operation can be performed.

Constraints

  • 1≤|S|≤2×10^5
  • Si = 'B' or 'W'

Input

Input is given from Standard Input in the following format:

S

Output

Print the maximum possible number of times the operation can be performed.


Sample Input 1 

BBW

Sample Output 1 

2

The operation can be performed twice, as follows:

  • Flip the second and third pieces from the left.
  • Flip the first and second pieces from the left.

Sample Input 2 

BWBWBW

Sample Output 2

6

题解:

1-11-2


代码:

#include <iostream>
using namespace std;
typedef long long LL; 
int main()
{
	string s;
	cin>>s;
	LL n=s.length(),sum=0;
	if(n==1)sum=0;
	else{
		LL pre=0;
		for(LL i=0;i<n;i++){
			if(s[i]=='B')pre++;
			else sum+=pre;
		}
	}
	cout<<sum<<endl;
	return 0;
}

 

 

 

  • 2
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值