首页
学习
活动
专区
圈层
工具
发布
首页
学习
活动
专区
圈层
工具
MCP广场
社区首页 >专栏 >【CodeForces】632B - Alice, Bob, Two Teams(模拟)

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

作者头像
FishWang
发布2025-08-26 20:42:31
发布2025-08-26 20:42:31
18900
代码可运行
举报
运行总次数:0
代码可运行

点击打开题目

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:

  1. 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.
  2. 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.
  3. 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

代码语言:javascript
代码运行次数:0
运行
复制
5
1 2 3 4 5
ABABA

output

代码语言:javascript
代码运行次数:0
运行
复制
11

input

代码语言:javascript
代码运行次数:0
运行
复制
5
1 2 3 4 5
AAAAA

output

代码语言:javascript
代码运行次数:0
运行
复制
15

input

代码语言:javascript
代码运行次数:0
运行
复制
1
1
B

output

代码语言:javascript
代码运行次数:0
运行
复制
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的价值,然后从前从后各扫一遍就行了。

代码如下:

代码语言:javascript
代码运行次数:0
运行
复制
#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;
}
本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
原始发表:2025-08-26,如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档