結果

問題 No.672 最長AB列
ユーザー バカらっくバカらっく
提出日時 2018-04-20 05:29:12
言語 Swift
(5.10.0)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 861 bytes
コンパイル時間 705 ms
コンパイル使用メモリ 121,344 KB
実行使用メモリ 15,944 KB
最終ジャッジ日時 2024-05-07 17:38:15
合計ジャッジ時間 1,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 7 ms
9,216 KB
testcase_01 AC 7 ms
9,088 KB
testcase_02 AC 7 ms
9,216 KB
testcase_03 AC 7 ms
9,088 KB
testcase_04 AC 7 ms
9,344 KB
testcase_05 AC 7 ms
9,088 KB
testcase_06 AC 8 ms
9,216 KB
testcase_07 AC 8 ms
9,216 KB
testcase_08 AC 8 ms
9,216 KB
testcase_09 AC 27 ms
15,816 KB
testcase_10 AC 29 ms
15,684 KB
testcase_11 AC 29 ms
15,812 KB
testcase_12 AC 48 ms
15,816 KB
testcase_13 AC 72 ms
15,684 KB
testcase_14 AC 31 ms
15,688 KB
testcase_15 AC 35 ms
15,944 KB
testcase_16 AC 131 ms
15,812 KB
testcase_17 AC 39 ms
15,684 KB
testcase_18 AC 28 ms
15,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

let inpt = readLine()!.map{ $0 }
var aCount = [0]
var bCount = [0]
if inpt.first! == "A" {
    aCount[0] = 1
} else {
    bCount[0] = 1
}

for i in(1..<inpt.count) {
    aCount.append(aCount.last!)
    bCount.append(bCount.last!)
    if inpt[i] == "A" {
        aCount[i] = aCount[i] + 1
    } else {
        bCount[i] = bCount[i] + 1
    }
}

var ans = 0
for i in (0..<inpt.count) {
    var j = inpt.count - 1
    if (j-i) % 2 == 0 {
        j -= 1
    }
    while j > i {
        let len = j - i + 1
        if(len <= ans) {
            break
        }
        var aCnt = aCount[j]
        var bCnt = bCount[j]
        if(i>0) {
            aCnt -= aCount[i-1]
            bCnt -= bCount[i-1]
        }
        if aCnt == bCnt {
            ans = max(ans, len)
            break
        }
        let sub = abs(aCnt - bCnt)
        j -= sub
    }
}
print(ans)
0