「CF399B」Red and Blue Balls

2014年3月2日3,9590

User ainta has a stack of n red and blue balls. He can apply a certain operation which changes the colors of the balls inside the stack.

  • While the top ball inside the stack is red, pop the ball from the top of the stack.
  • Then replace the blue ball on the top with a red ball.
  • And finally push some blue balls to the stack until the stack has total of n balls inside.

If there are no blue balls inside the stack, ainta can’t apply this operation. Given the initial state of the stack, ainta wants to know the maximum number of operations he can repeatedly apply.

Input

The first line contains an integer n (1 ≤ n ≤ 50) — the number of balls inside the stack.

The second line contains a string s (|s| = n) describing the initial state of the stack. The i-th character of the string s denotes the color of the i-th ball (we’ll number the balls from top to bottom of the stack). If the character is “R”, the color is red. If the character is “B”, the color is blue.

Output

Print the maximum number of operations ainta can repeatedly apply.

Please, do not write the %lld specifier to read or write 64-bit integers in С++. It is preferred to use the cin, cout streams or the%I64d specifier.

Sample test(s)
input

output

input

output

input

output

Note

The first example is depicted below.

The explanation how user ainta applies the first operation. He pops out one red ball, changes the color of the ball in the middle from blue to red, and pushes one blue ball.

 

 

The explanation how user ainta applies the second operation. He will not pop out red balls, he simply changes the color of the ball on the top from blue to red.

 

 

From now on, ainta can’t apply any operation because there are no blue balls inside the stack. ainta applied two operations, so the answer is 2.

The second example is depicted below. The blue arrow denotes a single operation.

 

 

看完就开始打模拟,数据范围这么小是吧。。然后果断T了

原来是找规律啊。。

把第n个蓝球变成红球要2^n次操作。。然后累加起来,开个longlong

模拟

正解

 

avatar
  Subscribe  
提醒