結果

問題 No.672 最長AB列
ユーザー elpheelphe
提出日時 2024-12-24 23:56:50
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 8 ms / 2,000 ms
コード長 753 bytes
コンパイル時間 775 ms
コンパイル使用メモリ 77,244 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-24 23:57:05
合計ジャッジ時間 1,525 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <cstdint>

using namespace std;

int main()
{
	cin.tie(nullptr);
	ios::sync_with_stdio(false);
	
	static char S[200001];
	cin >> S;

	static uint32_t first_index[400001], ans = 0, count_A = 0, count_B = 0, i;
	for (i = 0; i <= 400000; ++i)
		first_index[i] = UINT32_MAX;

	first_index[200000] = 0;
	for (i = 0; ; ++i)
	{
		switch (S[i])
		{
		case 'A':
			++count_A;
			break;

		case 'B':
			++count_B;
			break;

		case '\0':
			cout << ans << '\n';
			return 0;
		}

		if (first_index[200000 + count_A - count_B] == UINT32_MAX)
			first_index[200000 + count_A - count_B] = i + 1;
		else if (ans < i + 1 - first_index[200000 + count_A - count_B])
			ans = i + 1 - first_index[200000 + count_A - count_B];
	}

	return -1;
}
0