結果

問題 No.672 最長AB列
ユーザー umezoumezo
提出日時 2022-08-08 00:52:01
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 74 ms / 2,000 ms
コード長 660 bytes
コンパイル時間 2,343 ms
コンパイル使用メモリ 212,904 KB
実行使用メモリ 13,536 KB
最終ジャッジ日時 2023-10-17 19:12:41
合計ジャッジ時間 3,860 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define ALL(v) v.begin(),v.end()
typedef long long ll;

#include<bits/stdc++.h>
using namespace std;

int main(){
  ios::sync_with_stdio(false);
  std::cin.tie(nullptr);

  string s;
  cin>>s;
  int n=s.size();
  
  vector<int> A(n+1);
  rep(i,n){
    if(s[i]=='A') A[i+1]=A[i]+1;
    else A[i+1]=A[i]-1;
  }
  
  map<int,int> m1,m2;
  m1[0]=-1,m2[0]=-1;
  int ans=0;
  for(int i=0;i<n;i+=2){
    if(m1.count(A[i+1])) ans=max(ans,i-m1[A[i+1]]);
    else m1[A[i+1]]=i;
  }
  for(int i=1;i<n;i+=2){
    if(m2.count(A[i+1])) ans=max(ans,i-m2[A[i+1]]);
    else m2[A[i+1]]=i;
  }
  cout<<ans<<endl;
      
  return 0;
}
0