結果

問題 No.1433 Two color sequence
ユーザー Iroha_3856Iroha_3856
提出日時 2024-07-28 21:17:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 650 bytes
コンパイル時間 3,088 ms
コンパイル使用メモリ 247,444 KB
実行使用メモリ 8,320 KB
最終ジャッジ日時 2024-07-28 21:17:50
合計ジャッジ時間 6,411 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 39 ms
8,192 KB
testcase_04 AC 39 ms
8,192 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 95 ms
8,192 KB
testcase_09 AC 93 ms
8,192 KB
testcase_10 AC 89 ms
8,064 KB
testcase_11 AC 90 ms
8,192 KB
testcase_12 AC 93 ms
8,064 KB
testcase_13 AC 92 ms
8,320 KB
testcase_14 AC 93 ms
8,320 KB
testcase_15 AC 93 ms
8,192 KB
testcase_16 AC 93 ms
8,192 KB
testcase_17 AC 93 ms
8,192 KB
testcase_18 AC 92 ms
8,320 KB
testcase_19 AC 93 ms
8,192 KB
testcase_20 AC 93 ms
8,192 KB
testcase_21 AC 93 ms
8,192 KB
testcase_22 AC 93 ms
8,192 KB
testcase_23 AC 93 ms
8,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

int main() {
	int n; cin >> n;
	string s; cin >> s;
	vector<long long> a(n);
	for (int i = 0; i < n; i++) cin >> a[i];
	vector<long long> r(n+1), b(n+1);
	r[0] = b[0] = 0;
	for (int i = 1; i <= n; i++) {
		r[i] = r[i-1]; b[i] = b[i-1];
		if (s[i-1] == 'R') r[i] += a[i-1];
		else b[i] += a[i-1];
	}
	long long maxans = 0, minans = 0;
	long long curmin = 0, curmax = 0;
	for (int i = 1; i <= n; i++) {
		maxans = max(maxans, r[i]-b[i] - curmin);
		minans = min(minans, r[i]-b[i] - curmax);
		curmax = max(curmax, r[i]-b[i]);
		curmin = min(curmin, r[i]-b[i]);
	} 
	cout << max(maxans, -minans) << endl;
}
0