結果
問題 | No.672 最長AB列 |
ユーザー | kyawashell |
提出日時 | 2018-04-13 23:43:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,078 bytes |
コンパイル時間 | 1,108 ms |
コンパイル使用メモリ | 107,484 KB |
実行使用メモリ | 443,648 KB |
最終ジャッジ日時 | 2024-06-27 19:54:28 |
合計ジャッジ時間 | 7,801 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 271 ms
339,456 KB |
testcase_01 | AC | 273 ms
339,584 KB |
testcase_02 | AC | 275 ms
339,584 KB |
testcase_03 | AC | 273 ms
339,456 KB |
testcase_04 | WA | - |
testcase_05 | AC | 271 ms
339,584 KB |
testcase_06 | AC | 272 ms
339,584 KB |
testcase_07 | AC | 270 ms
339,456 KB |
testcase_08 | AC | 273 ms
339,584 KB |
testcase_09 | AC | 439 ms
443,648 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 301 ms
341,228 KB |
testcase_14 | WA | - |
testcase_15 | AC | 307 ms
341,284 KB |
testcase_16 | AC | 302 ms
341,372 KB |
testcase_17 | AC | 366 ms
391,888 KB |
testcase_18 | WA | - |
ソースコード
#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]; deque<int> c[500000]; bool used[500000]; int main(){ cin >> s; ll n = s.length(); REP(i,n) { if(s[i] == 'A') { a[i] = 1; }else{ a[i] = -1; } } REP(i,n - 1) { a[i + 1] += a[i]; } REP(i,n) { c[a[i] + n].push_front(i); } 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; }