結果

問題 No.672 最長AB列
ユーザー chocoruskchocorusk
提出日時 2018-06-24 07:52:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 11 ms / 2,000 ms
コード長 774 bytes
コンパイル時間 697 ms
コンパイル使用メモリ 78,516 KB
実行使用メモリ 7,808 KB
最終ジャッジ日時 2024-06-30 18:36:43
合計ジャッジ時間 1,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,552 KB
testcase_01 AC 6 ms
7,424 KB
testcase_02 AC 5 ms
7,552 KB
testcase_03 AC 5 ms
7,424 KB
testcase_04 AC 5 ms
7,552 KB
testcase_05 AC 5 ms
7,552 KB
testcase_06 AC 5 ms
7,552 KB
testcase_07 AC 5 ms
7,552 KB
testcase_08 AC 6 ms
7,552 KB
testcase_09 AC 10 ms
7,808 KB
testcase_10 AC 10 ms
7,808 KB
testcase_11 AC 10 ms
7,808 KB
testcase_12 AC 11 ms
7,808 KB
testcase_13 AC 10 ms
7,680 KB
testcase_14 AC 10 ms
7,808 KB
testcase_15 AC 10 ms
7,680 KB
testcase_16 AC 10 ms
7,808 KB
testcase_17 AC 10 ms
7,680 KB
testcase_18 AC 10 ms
7,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#define INF 1000000000

using namespace std;
typedef long long int ll;
typedef pair<int, int> P;

int main()
{
	string s;
	cin>>s;
	int n=s.length();
	int c[200001];
	c[0]=0;
	for(int i=0; i<n; i++){
		if(s[i]=='A'){
			c[i+1]=c[i]+1;
		}else{
			c[i+1]=c[i]-1;
		}
	}
	int m1[400002], m2[400002]={};
	fill(m1, m1+400002, INF);
	for(int i=0; i<=n; i++){
		if(m1[c[i]+200000]>i) m1[c[i]+200000]=i;
		if(m2[c[i]+200000]<i) m2[c[i]+200000]=i;
	}
	int ans=0;
	for(int i=0; i<400002; i++){
		if(m2[i]-m1[i]>ans) ans=m2[i]-m1[i];
	}
	printf("%d\n", ans);
	return 0;
}
0