結果
問題 | No.672 最長AB列 |
ユーザー | asdf1 |
提出日時 | 2018-10-25 11:59:45 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,356 bytes |
コンパイル時間 | 1,372 ms |
コンパイル使用メモリ | 158,824 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-11-19 05:41:25 |
合計ジャッジ時間 | 1,761 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | WA | - |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
5,248 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
ソースコード
#include <bits/stdc++.h> typedef long long ll; const int INF = 1e9,MOD = 1e9+7,ohara = 1e6; const ll LINF = 1e18; using namespace std; #define rep(i,n) for(ll (i)=0;(i)<(int)(n);(i)++) #define rrep(i,a,b) for(ll i=(a);i<(b);i++) #define rrrep(i,a,b) for(ll i=(a);i>=(b);i--) #define all(v) (v).begin(), (v).end() #define pb(q) push_back(q) #define Size(n) (n).size() #define Cout(x) cout<<(x)<<endl ll n,cnt=1,ans=0,b,c,d,cmp,cmpp,m,h,w,x,y,sum=0,pos,dataa[ohara],datab[ohara],coua=0,coub=0; int dy[]={1,0,-1,0}; int dx[]={0,1,0,-1}; //int dy[]={-1,0,1,-1,1,-1,0,1}; //int dx[]={-1,-1,-1,0,0,1,1,1}; string alph("abcdefghijklmnopqrstuvwxyz"),s; bool a; struct edge{int to,cost;}; //-------------------------↓↓↓↓↓↓------------------------ int main(void){ cin.tie(0); ios::sync_with_stdio(false); cin>>s; if(s[0]=='A')a=true; else a=false; rep(i,Size(s)){ if(i==0)continue; if(a&&s[i]=='B')a=false,dataa[coua++]=cnt,cnt=1; else if(!a&&s[i]=='A')a=true,datab[coub++]=cnt,cnt=1; else cnt++; } if(a)dataa[coua++]=cnt; else datab[coub++]=cnt; rep(i,max(coua,coub)){ cnt=min(dataa[i],datab[i]); cnt=max(dataa[i],datab[max(i-1,0LL)]); cnt=max(dataa[i],datab[max(i+1,coub-1)]); ans=max(ans,cnt*2); } Cout(ans); return 0; }