結果

問題 No.2858 Make a Palindrome
ユーザー tottoripapertottoripaper
提出日時 2024-08-27 22:16:53
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,972 bytes
コンパイル時間 2,235 ms
コンパイル使用メモリ 206,720 KB
実行使用メモリ 13,348 KB
最終ジャッジ日時 2024-08-27 22:17:01
合計ジャッジ時間 6,148 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 417 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 63 ms
6,940 KB
testcase_11 AC 60 ms
6,940 KB
testcase_12 AC 61 ms
6,944 KB
testcase_13 AC 63 ms
6,940 KB
testcase_14 AC 61 ms
6,944 KB
testcase_15 AC 21 ms
6,940 KB
testcase_16 AC 23 ms
6,940 KB
testcase_17 AC 23 ms
6,940 KB
testcase_18 AC 21 ms
6,944 KB
testcase_19 AC 21 ms
6,944 KB
testcase_20 AC 23 ms
12,000 KB
testcase_21 AC 21 ms
12,112 KB
testcase_22 AC 15 ms
7,968 KB
testcase_23 AC 17 ms
12,084 KB
testcase_24 AC 19 ms
11,056 KB
testcase_25 AC 19 ms
9,896 KB
testcase_26 AC 13 ms
9,972 KB
testcase_27 AC 23 ms
13,152 KB
testcase_28 AC 22 ms
10,472 KB
testcase_29 AC 18 ms
12,312 KB
testcase_30 AC 25 ms
13,280 KB
testcase_31 AC 24 ms
13,176 KB
testcase_32 AC 23 ms
13,204 KB
testcase_33 AC 29 ms
13,132 KB
testcase_34 AC 26 ms
13,240 KB
testcase_35 AC 26 ms
13,208 KB
testcase_36 AC 25 ms
13,280 KB
testcase_37 AC 25 ms
13,348 KB
testcase_38 AC 26 ms
13,132 KB
testcase_39 AC 24 ms
13,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using ll = std::int64_t;
using T = std::tuple<int, int, int>;

template <typename C>
std::vector<int> manacher(C seq){
    auto n = seq.size();
    std::vector<int> res(n, 0);
    int c = 0;
    for(int i = 0; i < n; i += 1){
        int ri = c - (i - c);
        if(ri >= 0 && i + res[ri] < c + res[c]){
            res[i] = res[ri];
        }else{
            int j = c + res[c] - i;
            while(i - j >= 0 && i + j < n && seq[i - j] == seq[i + j]){
                j += 1;
            }
            res[i] = j;
            c = i;
        }
    }
    return res;
}

int main(){
    std::cin.tie(nullptr);
    std::ios::sync_with_stdio(false);

    int T;
    std::cin >> T;

    for(int _=0;_<T;_++){
        int N, M;
        std::cin >> N >> M;

        std::string S1;
        std::cin >> S1;
        S1 = S1 + S1 + S1;

        std::string S2(S1.size() * 2, '$');
        for(int i=0;i<S1.size();i++){
            S2[i * 2] = S1[i];
        }

        auto L1 = manacher(S1);
        auto L2 = manacher(S2);

        auto check = [&](int x){
            if(x <= 2){
                int last = x * N;
                for(int i=0;i<last;i++){
                    int r1 = std::min(L1[i], last - i);
                    int r2 = std::min(L2[i * 2 + 1] / 2, last - (i + 1));
                    int c = std::max(r1 * 2 - 1, r2 * 2);
                    if(c >= M){return true;}
                }
                return false;
            }

            for(int i=N;i<2*N;i++){
                if(L1[i] >= std::max(i - (N - 1), 2 * N - i)){
                    int r = std::min(2 * N - i, i - (N - 1));
                    ll c = 1ll * (1 + (x - 1) / 2 * 2) * (2 * r - 1) + 1ll * (x / 2 * 2) * (N - (2 * r - 1));
                    if(c >= M){
                        return true;
                    }
                }
            }

            for(int i=N;i<2*N;i++){
                int r = L2[i * 2 + 1] / 2;
                if(r >= std::max(i - (N - 1), 2 * N - (i + 1))){
                    int r2 = std::min(2 * N - (i + 1), i - (N - 1));
                    ll c = 1ll * (1 + (x - 1) / 2 * 2) * (2 * r2) + 1ll * (x / 2 * 2) * (N - (2 * r2));
                    if(c >= M){
                        return true;
                    }
                }
            }

            int r = L2[(2 * N - 1) * 2 + 1] / 2;
            if(r >= N){
                ll c = 1ll * (x / 2) * (2 * N);
                if(c >= M){
                    return true;
                }
            }

            return false;
        };

        if(check(2'000'000'000)){
            int ok = 2'000'000'000, ng = 0;
            while(ok - ng >= 2){
                int m = (ok + ng) / 2;
                if(check(m)){
                    ok = m;
                }else{
                    ng = m;
                }
            }
            std::cout << ok << std::endl;
        }else{
            std::cout << -1 << std::endl;
        }
    }
}
0