結果

問題 No.1433 Two color sequence
ユーザー katoru_perfperfkatoru_perfperf
提出日時 2021-03-26 20:15:28
言語 C++17(clang)
(17.0.6 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 955 bytes
コンパイル時間 1,312 ms
コンパイル使用メモリ 122,880 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-05-06 12:55:29
合計ジャッジ時間 3,857 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 34 ms
5,888 KB
testcase_04 AC 35 ms
5,760 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 1 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <stdio.h>

using namespace std;

int MINIMUM = -1000000001;

int main() {
	int N;
	cin >> N;
	string S;
	cin >> S;
	vector<int> a(N);
	for (int i = 0; i < N; i++) {
		cin >> a.at(i);
	}

	for (int i = 0; i < N; i++) {
		if (S.at(i) == 'B') {
			a.at(i) *= (-1);
		}
	}

	vector<int> plusdp(N);
	vector<int> minusdp(N);

	plusdp.at(0) = a.at(0);
	minusdp.at(0) = (-1) * a.at(0);

	for (int i = 0; i < N-1; i++) {
		plusdp.at(i + 1) = max(a.at(i+1), plusdp.at(i) + a.at(i+1));
		minusdp.at(i + 1) = max((-1)*a.at(i + 1), minusdp.at(i) - a.at(i + 1));
	}

	/*for (int i = 0; i < N; i++) {
		cout << plusdp.at(i) << " ";
	}
	cout << endl;

	for (int i = 0; i < N; i++) {
		cout << minusdp.at(i) << " ";
	}
	cout << endl;*/

	int MAX = MINIMUM;

	for (int i = 0; i < N; i++) {
		if (plusdp.at(i) > MAX) {
			MAX = plusdp.at(i);
		}
		if (minusdp.at(i) > MAX) {
			MAX = minusdp.at(i);
		}
	}

	cout << abs(MAX);
}
0