結果

問題 No.672 最長AB列
ユーザー tactac
提出日時 2019-07-25 20:34:23
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 23 ms / 2,000 ms
コード長 960 bytes
コンパイル時間 1,477 ms
コンパイル使用メモリ 169,800 KB
実行使用メモリ 22,364 KB
最終ジャッジ日時 2024-07-02 06:17:28
合計ジャッジ時間 2,762 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 8 ms
15,936 KB
testcase_01 AC 6 ms
15,888 KB
testcase_02 AC 7 ms
15,944 KB
testcase_03 AC 6 ms
15,936 KB
testcase_04 AC 7 ms
15,944 KB
testcase_05 AC 8 ms
15,936 KB
testcase_06 AC 7 ms
15,944 KB
testcase_07 AC 6 ms
15,960 KB
testcase_08 AC 6 ms
15,940 KB
testcase_09 AC 23 ms
22,364 KB
testcase_10 AC 20 ms
19,044 KB
testcase_11 AC 20 ms
19,232 KB
testcase_12 AC 14 ms
17,212 KB
testcase_13 AC 14 ms
17,252 KB
testcase_14 AC 12 ms
17,272 KB
testcase_15 AC 14 ms
17,264 KB
testcase_16 AC 13 ms
17,180 KB
testcase_17 AC 20 ms
19,112 KB
testcase_18 AC 12 ms
16,956 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define F first
#define S second
#define pii pair<int, int>
#define eb emplace_back
#define all(v) v.begin(), v.end()
#define rep(i, n) for (int i = 0; i < n; ++i)
#define rep3(i, l, n) for (int i = l; i < n; ++i)
#define chmax(a, b) a = max(a, b)
#define chmin(a, b) a = min(a, b)
#define out(a) cout << a << endl
#define outa(a, n) rep(_, n) cout << a[_] << " "; cout << endl
#define SZ(v) (int)v.size()
#define inf (int)(1e9+7)

vector<int> v[500001];
int main() {
    string s;
    cin >> s;
    int table[200001]; fill_n(table, 200001, -1);
    table[0] = 300000;
    v[300000].eb(0);
    rep(i, SZ(s)) {
        if (s[i] == 'A') table[i + 1] = table[i] + 1;
        else table[i + 1] = table[i] - 1;
        v[table[i + 1]].eb(i + 1);
    }
    int ans = 0;
    rep(i, 500001) {
        if (SZ(v[i]) < 2) continue;
        chmax(ans, v[i][SZ(v[i]) - 1] - v[i][0]);
    }
    out(ans);
}
0