結果

問題 No.2858 Make a Palindrome
ユーザー InTheBloomInTheBloom
提出日時 2024-08-28 15:23:30
言語 D
(dmd 2.106.1)
結果
AC  
実行時間 485 ms / 3,000 ms
コード長 3,057 bytes
コンパイル時間 2,111 ms
コンパイル使用メモリ 173,356 KB
実行使用メモリ 17,588 KB
最終ジャッジ日時 2024-08-28 15:23:45
合計ジャッジ時間 10,812 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 485 ms
6,812 KB
testcase_01 AC 213 ms
6,940 KB
testcase_02 AC 218 ms
6,944 KB
testcase_03 AC 203 ms
6,940 KB
testcase_04 AC 206 ms
6,940 KB
testcase_05 AC 182 ms
6,940 KB
testcase_06 AC 154 ms
6,940 KB
testcase_07 AC 155 ms
6,940 KB
testcase_08 AC 153 ms
6,944 KB
testcase_09 AC 164 ms
6,944 KB
testcase_10 AC 173 ms
6,940 KB
testcase_11 AC 187 ms
6,940 KB
testcase_12 AC 181 ms
6,940 KB
testcase_13 AC 179 ms
6,940 KB
testcase_14 AC 177 ms
6,940 KB
testcase_15 AC 123 ms
7,164 KB
testcase_16 AC 121 ms
7,484 KB
testcase_17 AC 119 ms
7,156 KB
testcase_18 AC 116 ms
7,392 KB
testcase_19 AC 114 ms
7,308 KB
testcase_20 AC 98 ms
16,424 KB
testcase_21 AC 105 ms
14,740 KB
testcase_22 AC 56 ms
9,200 KB
testcase_23 AC 101 ms
15,216 KB
testcase_24 AC 90 ms
13,220 KB
testcase_25 AC 84 ms
11,624 KB
testcase_26 AC 75 ms
12,308 KB
testcase_27 AC 116 ms
16,172 KB
testcase_28 AC 89 ms
12,520 KB
testcase_29 AC 107 ms
16,584 KB
testcase_30 AC 113 ms
17,588 KB
testcase_31 AC 116 ms
16,076 KB
testcase_32 AC 113 ms
15,704 KB
testcase_33 AC 118 ms
16,576 KB
testcase_34 AC 117 ms
16,500 KB
testcase_35 AC 122 ms
16,452 KB
testcase_36 AC 117 ms
17,504 KB
testcase_37 AC 118 ms
16,844 KB
testcase_38 AC 114 ms
17,448 KB
testcase_39 AC 114 ms
16,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main () {
    int T = readln.chomp.to!int;
    foreach (i; 0..T) {
        int N, M; readln.read(N, M);
        string S = readln.chomp;
        solve(N, M, S);
    }
}

void solve (int N, int M, string S) {
    // Sが回文でない時を考える。
    // Sを連結した文字列の連続部分列が回文であるとき、Sをまるまる含むかどうかがカギになる。
    // Sをまるまる含む場合、Sは必ずちょうど二つの回文に分解できる。

    // S三つの最長回文を求めて、2|S|を超えている場合、必ず実現できる。(さっきの議論により、二つの回文に分解できるので、これをつなげる感じで伸ばせる)
    // そうでない場合、Mの値によっては実現できる可能性がある。

    // ローリングハッシュ + 二分探索しか思いつかないので、Manacher's algorithmをパクって実装する。
    // 窃盗: https://snuke.hatenablog.com/entry/2014/12/02/235837

    auto R = new int[](0);

    void snuke_manacher (string S) {
        R.length = S.length;
        int i = 0, j = 0;
        while (i < S.length) {
            while (i-j >= 0 && i+j < S.length && S[i-j] == S[i+j]) ++j;
            R[i] = j;
            int k = 1;
            while (i-k >= 0 && k+R[i-k] < j) R[i+k] = R[i-k], ++k;
            i += k; j -= k;
        }
    }

    { // S
        string T = "_";
        foreach (c; S) {
            T ~= c;
            T ~= "_";
        }

        snuke_manacher(T);
        foreach (i; 0..R.length) {
            int len = (R[i] - 1) / 2 * 2;
            if (i % 2 == 1) len++;

            if (M <= len) {
                writeln(1);
                return;
            }
        }
    }

    { // SS
        string T = "_";
        foreach (c; S) {
            T ~= c;
            T ~= "_";
        }
        foreach (c; S) {
            T ~= c;
            T ~= "_";
        }

        snuke_manacher(T);
        foreach (i; 0..R.length) {
            int len = (R[i] - 1) / 2 * 2;
            if (i % 2 == 1) len++;

            if (M <= len) {
                writeln(2);
                return;
            }
        }
    }

    { // SSS
        string T = "_";
        foreach (c; S) {
            T ~= c;
            T ~= "_";
        }
        foreach (c; S) {
            T ~= c;
            T ~= "_";
        }
        foreach (c; S) {
            T ~= c;
            T ~= "_";
        }

        int maximum = 0;

        snuke_manacher(T);
        foreach (i; 0..R.length) {
            int len = (R[i] - 1) / 2 * 2;
            if (i % 2 == 1) len++;
            maximum = max(maximum, len);
        }

        if (2 * N <= maximum) {
            int rem = 3 * N - maximum;
            writeln((M + rem + N - 1) / N);
            return;
        }
    }

    writeln(-1);
}

void read (T...) (string S, ref T args) {
    import std.conv : to;
    import std.array : split;
    auto buf = S.split;
    foreach (i, ref arg; args) {
        arg = buf[i].to!(typeof(arg));
    }
}
0