結果

問題 No.2278 Time Bomb Game 2
ユーザー t98slidert98slider
提出日時 2023-04-21 23:11:31
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,469 bytes
コンパイル時間 1,929 ms
コンパイル使用メモリ 179,924 KB
実行使用メモリ 792,560 KB
最終ジャッジ日時 2024-11-06 16:36:40
合計ジャッジ時間 8,539 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 11 ms
13,952 KB
testcase_07 AC 56 ms
65,776 KB
testcase_08 AC 60 ms
69,444 KB
testcase_09 AC 102 ms
118,252 KB
testcase_10 AC 50 ms
59,432 KB
testcase_11 AC 3 ms
5,248 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 107 ms
126,248 KB
testcase_14 AC 77 ms
91,176 KB
testcase_15 AC 85 ms
99,880 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 15 ms
18,432 KB
testcase_18 AC 51 ms
60,456 KB
testcase_19 AC 57 ms
66,596 KB
testcase_20 MLE -
testcase_21 AC 3 ms
6,820 KB
testcase_22 AC 3 ms
6,816 KB
testcase_23 AC 94 ms
103,112 KB
testcase_24 AC 106 ms
120,868 KB
testcase_25 AC 78 ms
88,944 KB
testcase_26 AC 90 ms
81,704 KB
testcase_27 AC 95 ms
104,372 KB
testcase_28 AC 38 ms
43,776 KB
testcase_29 AC 72 ms
84,392 KB
testcase_30 AC 66 ms
76,716 KB
testcase_31 AC 8 ms
10,624 KB
testcase_32 AC 52 ms
59,556 KB
testcase_33 MLE -
testcase_34 AC 97 ms
113,680 KB
testcase_35 AC 107 ms
125,740 KB
testcase_36 AC 45 ms
51,880 KB
testcase_37 AC 51 ms
60,328 KB
testcase_38 AC 71 ms
68,648 KB
testcase_39 AC 5 ms
6,820 KB
testcase_40 AC 3 ms
6,816 KB
testcase_41 AC 77 ms
90,576 KB
testcase_42 AC 2 ms
6,816 KB
testcase_43 AC 61 ms
73,640 KB
testcase_44 AC 5 ms
6,820 KB
testcase_45 AC 26 ms
29,440 KB
testcase_46 AC 3 ms
6,816 KB
testcase_47 AC 3 ms
6,820 KB
testcase_48 AC 108 ms
131,040 KB
testcase_49 AC 75 ms
89,768 KB
testcase_50 AC 14 ms
15,744 KB
testcase_51 AC 85 ms
102,092 KB
testcase_52 AC 4 ms
6,816 KB
testcase_53 AC 68 ms
82,600 KB
testcase_54 AC 13 ms
16,512 KB
testcase_55 AC 19 ms
23,040 KB
testcase_56 AC 2 ms
6,820 KB
testcase_57 AC 44 ms
52,904 KB
testcase_58 AC 9 ms
10,496 KB
testcase_59 AC 86 ms
102,832 KB
testcase_60 AC 95 ms
115,116 KB
testcase_61 AC 8 ms
10,240 KB
testcase_62 AC 104 ms
124,848 KB
testcase_63 AC 3 ms
6,816 KB
testcase_64 AC 3 ms
6,816 KB
testcase_65 AC 3 ms
6,816 KB
testcase_66 AC 3 ms
6,820 KB
testcase_67 AC 3 ms
6,816 KB
testcase_68 AC 3 ms
6,820 KB
testcase_69 AC 3 ms
6,816 KB
testcase_70 AC 3 ms
6,816 KB
testcase_71 AC 2 ms
6,816 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, k, t, mn = 1 << 30;
    string s, s2;
    cin >> n >> k >> t >> s;
    k--;
    if(t <= 1000){
        vector<vector<int>> dp(n, vector<int>(1001, -1));
        function<int(int,int)> rec = [&](int i, int t){
            if(t == 0) return s[i] == 'A' ? 0 : 1;
            if(dp[i][t] != -1) return dp[i][t];
            if(s[i] == 'A'){
                if(i >= 1 && rec(i - 1, t - 1) == 1) return dp[i][t] = 1;
                if(i + 1 < n && rec(i + 1, t - 1) == 1) return dp[i][t] = 1;
                return dp[i][t] = 0;
            }
            if(i >= 1 && rec(i - 1, t - 1) == 0) return dp[i][t] = 0;
            if(i + 1 < n && rec(i + 1, t - 1) == 0) return dp[i][t] = 0;
            return dp[i][t] = 1;
        };
        cout << (rec(k, t) ? "Alice" : "Bob") << '\n';
        return 0;
    }
    for(int i = k; i + 1 < n; i++){
        if(s[i] != s[i + 1]){
            mn = min(mn, i + 1 - k);
            break;
        }
    }
    for(int i = k; i >= 1; i--){
        if(s[i] != s[i - 1]){
            mn = min(mn, k - (i - 1));
            break;
        }
    }
    if(mn > t){
        cout << (s[k] == 'A' ? "Bob" : "Alice") << '\n';
        return 0;
    }
    char tmp = s[k];
    s[k] = 'C';
    vector<pair<char,int>> b;
    for(int i = 0; i < n; ){
        int p = i;
        while(i < n && s[i] == s[p]) i++;
        b.emplace_back(s[p], i - p);
    }
    
    for(int i = 0; i < b.size(); i++){
        char c;
        int v;
        tie(c, v) = b[i];
        if(c == 'C'){
            k = s2.size();
            s2 += tmp;
            continue;
        }
        s2 += string(v % 2 + (v >= 2) * 2, c);
    }
    swap(s, s2);
    n = s.size();
    t %= 100;
    t += 100;
    vector<vector<int>> dp(n, vector<int>(201, -1));
    function<int(int,int)> rec = [&](int i, int t){
        if(t == 0) return s[i] == 'A' ? 0 : 1;
        if(dp[i][t] != -1) return dp[i][t];
        if(s[i] == 'A'){
            if(i >= 1 && rec(i - 1, t - 1) == 1) return dp[i][t] = 1;
            if(i + 1 < n && rec(i + 1, t - 1) == 1) return dp[i][t] = 1;
            return dp[i][t] = 0;
        }
        if(i >= 1 && rec(i - 1, t - 1) == 0) return dp[i][t] = 0;
        if(i + 1 < n && rec(i + 1, t - 1) == 0) return dp[i][t] = 0;
        return dp[i][t] = 1;
    };
    cout << (rec(k, t) ? "Alice" : "Bob") << '\n';
}
0