結果

問題 No.672 最長AB列
ユーザー @abcde@abcde
提出日時 2019-03-18 22:24:49
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 647 bytes
コンパイル時間 1,379 ms
コンパイル使用メモリ 159,288 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-19 06:46:37
合計ジャッジ時間 2,270 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 3 ms
5,376 KB
testcase_04 AC 2 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 7 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 7 ms
5,376 KB
testcase_13 AC 7 ms
5,376 KB
testcase_14 AC 7 ms
5,376 KB
testcase_15 AC 7 ms
5,376 KB
testcase_16 AC 7 ms
5,376 KB
testcase_17 AC 7 ms
5,376 KB
testcase_18 AC 7 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 解答不能(WAが取れない)と判断したので, 下記, 正解者様のソースを確認後, 再提出.
// https://yukicoder.me/submissions/318987
#include <bits/stdc++.h>
using namespace std;
const int N = 4e5+1;
int A[N];

int main() {
    
    // 1. 入力情報取得.
    string S;
    cin >> S;
    
    // 2. 模範解答通り.
    int ans = 0, n = S.size(), c = n;
    for(int i = 0; i < N; i++) A[i] = n;
    A[n] = -1;
    for(int i = 0; i < n; i++){
        c += (S[i]=='A' ? 1 : -1);
        A[c] = min(A[c], i);
        ans = max(ans, i - A[c]);
    }
    
    // 3. 後処理.
    cout << ans << endl;
    return 0;
    
}
0