CF632B.Alice, Bob, Two Teams

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Alice and Bob are playing a game. The game involves splitting up game pieces into two teams. There are nn pieces, and the ii -th piece has a strength pip_{i} .

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

  1. First, Alice will split the pieces into two different groups AA and BB . This can be seen as writing the assignment of teams of a piece in an nn character string, where each character is AA or BB .
  2. Bob will then choose an arbitrary prefix or suffix of the string, and flip each character in that suffix (i.e. change AA to BB and BB to AA ). He can do this step at most once.
  3. Alice will get all the pieces marked AA and Bob will get all the pieces marked BB .

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 nn ( 1<=n<=51051<=n<=5·10^{5} ) — the number of game pieces.

The second line contains nn integers pip_{i} ( 1<=pi<=1091<=p_{i}<=10^{9} ) — the strength of the ii -th piece.

The third line contains nn characters AA or BB — the assignment of teams after the first step (after Alice's step).

输出格式

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

输入输出样例

  • 输入#1

    5
    1 2 3 4 5
    ABABA
    

    输出#1

    11
    
  • 输入#2

    5
    1 2 3 4 5
    AAAAA
    

    输出#2

    15
    
  • 输入#3

    1
    1
    B
    

    输出#3

    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 55 .

In the third sample Bob should do nothing.

首页