結果

問題 No.672 最長AB列
ユーザー mayoko_mayoko_
提出日時 2018-04-14 00:23:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 498 ms
コンパイル使用メモリ 66,688 KB
実行使用メモリ 5,632 KB
最終ジャッジ日時 2024-06-27 20:00:46
合計ジャッジ時間 1,316 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 3 ms
5,376 KB
testcase_02 AC 3 ms
5,376 KB
testcase_03 AC 4 ms
5,376 KB
testcase_04 AC 3 ms
5,376 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 3 ms
5,376 KB
testcase_07 AC 3 ms
5,376 KB
testcase_08 AC 3 ms
5,376 KB
testcase_09 AC 8 ms
5,632 KB
testcase_10 AC 8 ms
5,504 KB
testcase_11 AC 8 ms
5,632 KB
testcase_12 AC 9 ms
5,504 KB
testcase_13 AC 9 ms
5,376 KB
testcase_14 AC 8 ms
5,504 KB
testcase_15 AC 8 ms
5,632 KB
testcase_16 AC 8 ms
5,504 KB
testcase_17 AC 8 ms
5,504 KB
testcase_18 AC 8 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <cstring>

using namespace std;
const int MAX = 222222;
int initialPoint[MAX*2];
int* p = initialPoint + MAX;

int main() {
	string str;
	cin >> str;
	int cur = 0;
	memset(initialPoint, -1, sizeof(initialPoint));
	p[0] = 0;
	int ans = 0;
	for (int i = 0; i < str.size(); ++i) {
		const char c = str[i];
		if (c == 'A') {
			++cur;
		} else {
			--cur;
		}
		if (p[cur] < 0) {
			p[cur] = i+1;
		} else {
			ans = max(ans, i+1 - p[cur]);
		}
	}
	cout << ans << endl;
}
0