結果
問題 | No.672 最長AB列 |
ユーザー | kyawashell |
提出日時 | 2018-04-13 23:55:08 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 30 ms / 2,000 ms |
コード長 | 1,357 bytes |
コンパイル時間 | 1,064 ms |
コンパイル使用メモリ | 101,912 KB |
最終ジャッジ日時 | 2025-01-05 10:09:20 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 16 |
ソースコード
#include<cstdio> #include<cstdlib> #include<cmath> #include<climits> #include<iostream> #include<algorithm> #include<stack> #include<queue> #include<vector> #include<list> #include<map> #include<set> typedef long long ll; typedef unsigned long long ull; using namespace std; #define pb push_back int dy[]={0, 0, 1, -1, 0}; int dx[]={1, -1, 0, 0, 0}; #define FOR(i,a,b) for (int i=(a);i<(b);i++) #define RFOR(i,a,b) for (int i=(b)-1;i>=(a);i--) #define REP(i,n) for (int i=0;i<(n);i++) #define RREP(i,n) for (int i=(n)-1;i>=0;i--) string s; int a[300000]; vector<int> c[500000]; bool used[500000]; int main(){ cin >> s; ll n = s.length(); a[0] = 0; REP(i,n) { if(s[i] == 'A') { a[i + 1] = 1; }else{ a[i + 1] = -1; } } REP(i,n) { a[i + 1] += a[i]; } REP(i,n + 1) { c[a[i] + n + 10].pb(i); } int maxi = -1000000000,mini = 1000000000; REP(i,n + 1) { maxi = max(maxi,a[i]); mini = min(mini,a[i]); } int ans = 0; FOR(i,mini,maxi + 1) { ans = max(ans,c[i + n + 10].back() - c[i + n + 10].front()); } /*int ans = 0; REP(i,n) { if(!used[a[i] + n]) { used[a[i] + n] = true; ans = max(ans,c[a[i] + n][0] - i); } }*/ cout << ans << endl; return 0; }