結果
| 問題 |
No.672 最長AB列
|
| コンテスト | |
| ユーザー |
umezo
|
| 提出日時 | 2022-08-08 00:52:01 |
| 言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 96 ms / 2,000 ms |
| コード長 | 660 bytes |
| コンパイル時間 | 2,125 ms |
| コンパイル使用メモリ | 205,288 KB |
| 最終ジャッジ日時 | 2025-01-30 19:21:06 |
|
ジャッジサーバーID (参考情報) |
judge5 / judge5 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 16 |
ソースコード
#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;
}
umezo