結果

問題 No.1433 Two color sequence
ユーザー racsosaberacsosabe
提出日時 2021-03-19 22:25:17
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 644 bytes
コンパイル時間 1,898 ms
コンパイル使用メモリ 166,648 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-18 23:11:57
合計ジャッジ時間 3,383 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace::std;

const int N = 200000 + 5;

int n;
int a[N];
char s[N];

long long solve(){
	long long ans = LLONG_MIN;
	long long mini = 0;
	long long prefix = 0;
	for(int i = 0; i < n; i++){
		if(s[i] == 'R') prefix += a[i];
		else prefix -= a[i];
		ans = max(ans, prefix - mini);
		mini = min(mini, prefix);
	}
	return abs(ans);
}

int main(){
	scanf("%d", &n);
	scanf("%s", s);
	for(int i = 0; i < n; i++) scanf("%d", a + i);
	long long ans1 = solve();
	for(int i = 0; i < n; i++){
		if(s[i] == 'R') s[i] = 'B';
		else s[i] = 'R';
	}
	long long ans2 = solve();
	printf("%lld\n", max(ans1, ans2));
	return 0;
}
0