zoukankan      html  css  js  c++  java
  • 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:

    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.

    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.

    先计算B的总价值   再从前或从后选择一个子串,A变B  B变A,然后计算转换之后B的最大价值再加上之前统计的B的价值

    #include<cstdio>
    #include<cstring>
    #include<cmath>
    #include<queue>
    #include<algorithm>
    using namespace std;
    long long a[500001];
    char b[500001];
    int  main()
    {
    	long long n;
    	scanf("%lld",&n);
    	for(long long i=0;i<n;i++)
    	{
    		scanf("%lld",&a[i]);
    	}
    	scanf("%s",b);
    	long long sum=0;
    	for(long long i=0;i<n;i++)//先统计B的总价值 
    	{
    		if(b[i]=='B')
    		{
    			sum+=a[i];
    		}
    	}
    	long long  he;	
    	he=sum;
    	long long maxx=he;
    	for(long long i=0;i<n;i++)
    	{
    		if(b[i]=='A')//转化之后 之前的A就是B 
    		{
    				he+=a[i];
    		}
    		else
    		{
    			    he-=a[i];
    		}
    		maxx=max(maxx,he);
    	}
    	he=sum;
    	for(long long i=n-1;i>=0;i--)
    	{
    		if(b[i]=='A')
    		{
    				he+=a[i];
    		}
    		else
    		{
    			    he-=a[i];
    		}
    		maxx=max(maxx,he);
    	}
    	printf("%lld",maxx);
    	return 0;
    }
    


  • 相关阅读:
    广义mandelbrot集,使用python的matplotlib绘制,支持放大缩小
    cs229 斯坦福机器学习笔记(一)-- 入门与LR模型
    Scrapy研究探索(三)——Scrapy核心架构与代码执行分析
    matlab各类数据l图像之间的转化
    开源重磅,java内容管理系统CMS,点击就可以编辑,保存,轻松构建自己的站点
    Android4.4 ContentResolver查询图片无效 及 图库删除 添加图片后,ContentResolver不更新的问题解决
    03002_MySQL数据库的安装和配置
    [.Net Core] 简单使用 Mvc 内置的 Ioc
    Asp.Net MVC中Action跳转
    EF的增删改查
  • 原文地址:https://www.cnblogs.com/kingjordan/p/12027041.html
Copyright © 2011-2022 走看看