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.
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).
Print the only integer a — the maximum strength Bob can achieve.
5 1 2 3 4 5 ABABA
11
5 1 2 3 4 5 AAAAA
15
1 1 B
1
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 <stdio.h>
bool b[500010];
long long a[500010],ans,num1,num2;
char x[500010];
int main()
{
int n;
while(scanf("%d",&n)!=EOF)
{
//输入层:
for(int i=0;i<n;i++)
scanf("%lld",&a[i]);
scanf("%s",x);
for(int i=0;i<n;i++)
{
if(x[i]=='B')
b[i]=true;
else
b[i]=false;
}
//算法层:
long long ans=0;
//不变时的ans:
for(int i=0;i<n;i++)
if(b[i])
ans+=a[i];
num1=num2=ans;
//正推
for(int i=0;i<n;i++)
{
if(b[i])
num1-=a[i];
else
num1+=a[i];
if(num1>ans)
ans=num1;
}
//反推
for(int i=n-1;i>=0;i--)
{
if(b[i])
num2-=a[i];
else
num2+=a[i];
if(num2>ans)
ans=num2;
}
//输出层:
printf("%lld\n",ans);
}
}