結果

問題 No.672 最長AB列
ユーザー とばりとばり
提出日時 2018-08-18 17:39:30
言語 Go
(1.22.1)
結果
AC  
実行時間 229 ms / 2,000 ms
コード長 575 bytes
コンパイル時間 10,457 ms
コンパイル使用メモリ 221,652 KB
実行使用メモリ 16,064 KB
最終ジャッジ日時 2024-11-06 09:18:10
合計ジャッジ時間 13,406 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,816 KB
testcase_08 AC 1 ms
6,820 KB
testcase_09 AC 229 ms
16,064 KB
testcase_10 AC 229 ms
11,076 KB
testcase_11 AC 226 ms
11,072 KB
testcase_12 AC 205 ms
6,820 KB
testcase_13 AC 201 ms
6,816 KB
testcase_14 AC 206 ms
6,816 KB
testcase_15 AC 207 ms
6,820 KB
testcase_16 AC 210 ms
6,816 KB
testcase_17 AC 222 ms
10,948 KB
testcase_18 AC 198 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package main

import "fmt"

const MAX_LEN = 200000

func max(a int, b int) int {
	if a >= b {
		return a
	} else {
		return b
	}
}

func main() {
	var S string
	fmt.Scan(&S)

	scores := [MAX_LEN]int{}
	offset := map[rune]int{'A': 1, 'B': -1}

	for i, c := range S {
		scores[i] += offset[c]
		if i > 0 {
			scores[i] += scores[i-1]
		}
	}

	table := map[int]int{}

	ans := 0
	for l := len(S) - 1; l >= 0; l-- {
		table[scores[l]] = max(table[scores[l]], l)

		r, ok := table[scores[l] - offset[rune(S[l])]]

		if ok {
			ans = max(ans, r - l + 1)
		}
	}

	fmt.Println(ans)
}
0