結果

問題 No.672 最長AB列
ユーザー umezoumezo
提出日時 2022-08-08 00:50:06
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 639 bytes
コンパイル時間 2,950 ms
コンパイル使用メモリ 210,872 KB
実行使用メモリ 13,532 KB
最終ジャッジ日時 2023-10-17 19:10:48
合計ジャッジ時間 4,579 ms
ジャッジサーバーID
(参考情報)
judge11 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
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 WA -
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 2 ms
4,348 KB
testcase_09 AC 75 ms
13,532 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 12 ms
4,348 KB
testcase_14 WA -
testcase_15 AC 13 ms
4,348 KB
testcase_16 AC 12 ms
4,348 KB
testcase_17 AC 50 ms
8,780 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

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;
  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