您的位置:首页 > 其它

【CodeForces】632B - Alice, Bob, Two Teams(模拟)

2016-08-22 16:22 1086 查看
点击打开题目

B. Alice, Bob, Two Teams

time limit per test
1.5 seconds

memory limit per test
256 megabytes

input
standard input

output
standard output

Alice and Bob are playing a game. The game involves splitting up game pieces into two teams. There are n pieces, and the i-th
piece has a strength pi.

The way to split up game pieces is split into several steps:

First, Alice will split the pieces into two different groups A and B.
This can be seen as writing the assignment of teams of a piece in an n character string, where each character is A or B.

Bob will then choose an arbitrary prefix or suffix of the string, and flip each character in that suffix (i.e. change A to B and B to A).
He can do this step at most once.

Alice will get all the pieces marked A and Bob will get all the pieces marked B.

The strength of a player is then the sum of strengths of the pieces in the group.

Given Alice's initial split into two teams, help Bob determine an optimal strategy. Return the maximum strength he can achieve.

Input

The first line contains integer n (1 ≤ n ≤ 5·105)
— the number of game pieces.

The second line contains n integers pi (1 ≤ pi ≤ 109)
— the strength of the i-th piece.

The third line contains n characters A or B —
the assignment of teams after the first step (after Alice's step).

Output

Print the only integer a — the maximum strength Bob can achieve.

Examples

input
5
1 2 3 4 5
ABABA


output
11


input
5
1 2 3 4 5
AAAAA


output
15


input
1
1
B


output
1


Note

In the first sample Bob should flip the suffix of length one.

In the second sample Bob should flip the prefix or the suffix (here it is the same) of length 5.

In the third sample Bob should do nothing.

题目是说从前或从后选一个子串,把A变B,B变A,然后计算B的总价值,使之最大。

先统计B的价值,然后从前从后各扫一遍就行了。

代码如下:

#include <stdio.h>
#include <cstring>
#include <cmath>
#include <queue>
#include <algorithm>
using namespace std;
#define INF 0x3f3f3f3f
#define CLR(a,b) memset(a,b,sizeof(a))
char str[500000+11];
__int64 g[500000+11];
int main()
{
int n;
scanf ("%d",&n);
for (int i = 0 ; i < n ; i++)
scanf ("%I64d",&g[i]);
scanf ("%s",str);
__int64 ans = 0;
for (int i = 0 ; i < n ; i++)
{
if (str[i] == 'B')
ans += g[i];
}
__int64 t1 = ans;
__int64 t;
t = t1;
for (int i = 0 ; i < n ; i++)
{
if (str[i] == 'A')
t += g[i];
else
t -= g[i];
ans = max (ans , t);
}
t = t1;
for (int i = n-1 ; i >= 0 ; i--)
{
if (str[i] == 'A')
t += g[i];
else
t -= g[i];
ans = max (ans , t);
}
printf ("%I64d\n",ans);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: