結果

問題 No.672 最長AB列
ユーザー uafr_csuafr_cs
提出日時 2018-04-13 22:32:15
言語 Java21
(openjdk 21)
結果
AC  
実行時間 263 ms / 2,000 ms
コード長 1,017 bytes
コンパイル時間 2,272 ms
コンパイル使用メモリ 79,432 KB
実行使用メモリ 45,180 KB
最終ジャッジ日時 2024-06-27 16:28:25
合計ジャッジ時間 6,992 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,232 KB
testcase_01 AC 110 ms
39,860 KB
testcase_02 AC 109 ms
40,204 KB
testcase_03 AC 123 ms
40,968 KB
testcase_04 AC 120 ms
41,368 KB
testcase_05 AC 122 ms
41,352 KB
testcase_06 AC 117 ms
40,040 KB
testcase_07 AC 119 ms
41,224 KB
testcase_08 AC 126 ms
40,960 KB
testcase_09 AC 252 ms
45,180 KB
testcase_10 AC 243 ms
44,332 KB
testcase_11 AC 258 ms
44,668 KB
testcase_12 AC 263 ms
44,076 KB
testcase_13 AC 262 ms
44,172 KB
testcase_14 AC 253 ms
44,000 KB
testcase_15 AC 256 ms
44,220 KB
testcase_16 AC 257 ms
44,128 KB
testcase_17 AC 254 ms
44,584 KB
testcase_18 AC 249 ms
43,516 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.LinkedList;
import java.util.Scanner;

public class Main {
	
	public static final long MOD = 1000000007;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		
		final char[] chs = sc.next().toCharArray();
		int[] score = new int[chs.length];
		for(int i = 0; i < chs.length; i++){
			if(chs[i] == 'A'){
				score[i] = 1;
			}else{
				score[i] = -1;
			}
		}
		
		for(int i = 1; i < score.length; i++){
			score[i] += score[i - 1];
		}
		
		final int min = Math.min(0, Arrays.stream(score).min().getAsInt());
		final int max = Math.max(0, Arrays.stream(score).max().getAsInt());
		final int size = max - min + 1;
		int[] prev = new int[size];
		Arrays.fill(prev, score.length);
		prev[0 - min] = -1;
		
		int answer = 0;
		for(int i = 0; i < score.length; i++){
			final int s = score[i] - min;
			if(prev[s] < score.length){
				answer = Math.max(answer, i - prev[s]);
			}else{
				prev[s] = i;
			}
		}
		
		System.out.println(answer);
	}
}
0