結果
問題 | No.672 最長AB列 |
ユーザー | 夕叢霧香(ゆうむらきりか) |
提出日時 | 2018-04-13 22:23:23 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 531 bytes |
コンパイル時間 | 882 ms |
コンパイル使用メモリ | 90,972 KB |
実行使用メモリ | 26,112 KB |
最終ジャッジ日時 | 2024-06-27 16:26:37 |
合計ジャッジ時間 | 1,853 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 2 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 89 ms
26,112 KB |
testcase_10 | AC | 61 ms
15,104 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | AC | 56 ms
14,976 KB |
testcase_18 | WA | - |
ソースコード
#include<algorithm> #include<map> #include<iostream> #include<vector> using namespace std; typedef long long lint; typedef vector<int>vi; typedef pair<int,int>pii; #define rep(i,n)for(int i=0;i<(int)(n);++i) int main(){ string s; cin>>s; int n=s.length(); vi acc(n+1); rep(i,n){ acc[i+1]=acc[i]+(s[i]=='A'?1:-1); } int ma=0; map<int,vi> tt; rep(i,n+1){ tt[acc[i]].push_back(i); } for(auto &e:tt){ vi &v=e.second; rep(i,v.size()-1){ ma=max(ma,v[i+1]-v[i]); } } cout<<ma<<endl; }