結果

問題 No.672 最長AB列
ユーザー elpheelphe
提出日時 2024-12-24 23:48:11
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 748 bytes
コンパイル時間 907 ms
コンパイル使用メモリ 77,688 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-24 23:52:35
合計ジャッジ時間 1,723 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

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[0] = 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