結果

問題 No.2276 I Want AC
ユーザー t98slidert98slider
提出日時 2023-04-21 21:41:05
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 524 ms / 2,000 ms
コード長 1,436 bytes
コンパイル時間 1,589 ms
コンパイル使用メモリ 169,864 KB
実行使用メモリ 8,364 KB
最終ジャッジ日時 2024-11-06 15:10:16
合計ジャッジ時間 18,960 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,820 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,816 KB
testcase_05 AC 2 ms
6,820 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 2 ms
6,820 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 140 ms
6,816 KB
testcase_12 AC 452 ms
7,596 KB
testcase_13 AC 137 ms
6,816 KB
testcase_14 AC 58 ms
6,816 KB
testcase_15 AC 209 ms
6,820 KB
testcase_16 AC 184 ms
6,824 KB
testcase_17 AC 382 ms
7,544 KB
testcase_18 AC 317 ms
6,820 KB
testcase_19 AC 12 ms
6,820 KB
testcase_20 AC 471 ms
8,184 KB
testcase_21 AC 159 ms
6,820 KB
testcase_22 AC 67 ms
6,816 KB
testcase_23 AC 524 ms
8,112 KB
testcase_24 AC 516 ms
8,308 KB
testcase_25 AC 519 ms
8,116 KB
testcase_26 AC 469 ms
8,144 KB
testcase_27 AC 457 ms
8,136 KB
testcase_28 AC 368 ms
8,208 KB
testcase_29 AC 330 ms
8,132 KB
testcase_30 AC 440 ms
8,116 KB
testcase_31 AC 282 ms
8,112 KB
testcase_32 AC 460 ms
8,132 KB
testcase_33 AC 440 ms
8,116 KB
testcase_34 AC 472 ms
8,188 KB
testcase_35 AC 209 ms
8,112 KB
testcase_36 AC 212 ms
8,112 KB
testcase_37 AC 322 ms
8,260 KB
testcase_38 AC 212 ms
8,108 KB
testcase_39 AC 209 ms
8,240 KB
testcase_40 AC 214 ms
8,232 KB
testcase_41 AC 219 ms
8,156 KB
testcase_42 AC 325 ms
8,364 KB
testcase_43 AC 323 ms
8,112 KB
testcase_44 AC 409 ms
8,196 KB
testcase_45 AC 446 ms
8,148 KB
testcase_46 AC 433 ms
8,108 KB
testcase_47 AC 410 ms
8,184 KB
testcase_48 AC 416 ms
8,144 KB
testcase_49 AC 435 ms
8,240 KB
testcase_50 AC 439 ms
8,200 KB
testcase_51 AC 438 ms
8,236 KB
testcase_52 AC 436 ms
8,200 KB
testcase_53 AC 443 ms
8,108 KB
testcase_54 AC 323 ms
8,240 KB
testcase_55 AC 270 ms
8,156 KB
testcase_56 AC 244 ms
8,192 KB
testcase_57 AC 220 ms
8,324 KB
testcase_58 AC 245 ms
8,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    string s, t = "AC{";
    cin >> s;
    auto f = [&](int mid){
        vector<array<ll,3>> dp(n + 1, {0, 0, 0});
        dp[0][0] = 1;
        for(int i = 0; i < n; i++){
            for(int j = 0; j < 3; j++){
                dp[i + 1][j] += dp[i][j];
                if(s[i] == '?'){
                    if(i < mid && j == 0) dp[i + 1][j + 1] += dp[i][j];
                    if(i >= mid && j == 1) dp[i + 1][j + 1] += dp[i][j];
                }else{
                    if(s[i] == t[j]) dp[i + 1][j + 1] += dp[i][j];
                }
            }
        }
        return dp[n][2];
    };
    ll ans = 0;
    int l = 0, r = n + 1, c1, c2;
    while(l + 3 < r){
        c1 = (2 * l + r) / 3;
        c2 = (l + 2 * r) / 3;
        ll v1 = f(c1), v2 = f(c2);
        ans = max(ans, max(v1, v2));
        if(v1 >= v2) r = c2;
        else l = c1;
    }
    for(int i = l - 10; i <= r + 10; i++){
        ans = max(ans, f(i));
    }
    l = 0, r = n + 1, c1, c2;
    while(l + 3 < r){
        c1 = (2 * l + r) / 3;
        c2 = (l + 2 * r) / 3;
        ll v1 = f(c1), v2 = f(c2);
        ans = max(ans, max(v1, v2));
        if(v1 > v2) r = c2;
        else l = c1;
    }
    for(int i = l - 10; i <= r + 10; i++){
        ans = max(ans, f(i));
    }
    cout << ans << '\n';
}
0