您的位置:首页 > 其它

【codeforces 632B Alice, Bob, Two Teams】

2016-08-22 20:09 218 查看
Alice, Bob, Two Teams

Description

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.

Sample Input

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

Hint

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.

#include<cstdio>
#include<algorithm>
using namespace std;
long long  pa[500011],pb[500011],dp[500011];
char st[500011];
int main()
{
int N,i;
long long ans;
scanf("%d",&N);
for(i=1;i<=N;i++)
{
scanf("%lld",&dp[i]);
pa[i]=pb[i];
}
pa[0]=pb[0]=0;
scanf("%s",st);
for(i=1;i<=N;i++)
{
if(st[i-1]=='A')
{
pa[i]=pa[i-1]+dp[i];
pb[i]=pb[i-1];
}
else
{
pa[i]=pa[i-1];
pb[i]=pb[i-1]+dp[i];
}
}
ans=0;
for(i=1;i<=N;i++)
{
ans=max(ans,pa
+pb[i]-pa[i]);//改变前 i 个
ans=max(ans,pb
+pa[i]-pb[i]);//改变后 i 个
}
printf("%lld\n",ans);
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  codeforces