結果

問題 No.1433 Two color sequence
ユーザー yamakeyamake
提出日時 2021-03-19 21:59:47
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 90 ms / 2,000 ms
コード長 782 bytes
コンパイル時間 1,737 ms
コンパイル使用メモリ 166,944 KB
実行使用メモリ 8,436 KB
最終ジャッジ日時 2023-08-12 02:08:35
合計ジャッジ時間 4,529 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 37 ms
8,436 KB
testcase_04 AC 37 ms
8,284 KB
testcase_05 AC 2 ms
4,376 KB
testcase_06 AC 2 ms
4,376 KB
testcase_07 AC 1 ms
4,380 KB
testcase_08 AC 90 ms
8,176 KB
testcase_09 AC 88 ms
8,016 KB
testcase_10 AC 84 ms
7,944 KB
testcase_11 AC 85 ms
7,964 KB
testcase_12 AC 87 ms
7,868 KB
testcase_13 AC 85 ms
7,944 KB
testcase_14 AC 88 ms
8,296 KB
testcase_15 AC 89 ms
8,296 KB
testcase_16 AC 88 ms
8,164 KB
testcase_17 AC 88 ms
8,208 KB
testcase_18 AC 90 ms
8,164 KB
testcase_19 AC 88 ms
8,208 KB
testcase_20 AC 87 ms
8,128 KB
testcase_21 AC 88 ms
8,232 KB
testcase_22 AC 87 ms
8,160 KB
testcase_23 AC 87 ms
8,216 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
#define rep(i,n) for(int i=0;i<n;++i)
#define rep1(i,n) for(int i=1;i<=n;++i)
#define debug(output) cout<<#output<<"= "<<output<<endl
using lint = long long;
typedef pair<int,int> P;
const lint linf=1e18+7;
const lint inf=1e9+7;
const int MOD=1000000007;

signed main(){
  int n;cin>>n;
  string s;cin>>s;
  vector<lint> a(n),red(n+1,0),blue(n+1,0);
  rep(i,n)cin>>a[i];
  rep1(i,n){
    red[i]=red[i-1];
    blue[i]=blue[i-1];
    if(s[i-1]=='R')red[i]+=a[i-1];
    else blue[i]+=a[i-1];
  }
  lint res=-linf;
  lint rb=0;lint br=0;
  rep1(i,n){
    lint buf=red[i]-blue[i]-rb;
    buf=max(buf,blue[i]-red[i]-br);
    res=max(res,buf);
    rb=min(rb,red[i]-blue[i]);
    br=min(br,blue[i]-red[i]);
  }
  cout<<res<<"\n";
  return 0;
}
0