結果

問題 No.2276 I Want AC
ユーザー MarioYCMarioYC
提出日時 2023-04-21 22:04:58
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 9 ms / 2,000 ms
コード長 754 bytes
コンパイル時間 3,042 ms
コンパイル使用メモリ 200,308 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-06 15:34:37
合計ジャッジ時間 3,862 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 56
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

int main(){
    int N;
    cin >> N;
    string s;
    cin >> s;
    ll ans = 0;
    int na = 0,nc = 0;
    for(int i = 0;i < N;++i){
        if(s[i] == 'A'){
            ++na;
        }else{
            ans += na;
            ++nc;
        }
    }
    ll best = ans;
    na = 0;
    // cout << ans << " " << na << " " << nc << endl;
    for(int i = 0;i < N;++i){
        if(s[i] == '?'){
            --nc;
            ans = ans - na + nc;
            // cout << ans << endl;
            best = max(best, ans);
            ++na;
        }else if(s[i] == 'A'){
            ++na;
        }else if(s[i] == 'C'){
            --nc;
        }
    }
    cout << best << endl;
    return 0;
}
0