結果

問題 No.2858 Make a Palindrome
ユーザー soumatsoumat
提出日時 2024-08-25 16:23:47
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,672 bytes
コンパイル時間 2,220 ms
コンパイル使用メモリ 207,948 KB
実行使用メモリ 9,196 KB
最終ジャッジ日時 2024-08-25 16:24:10
合計ジャッジ時間 16,370 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
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 434 ms
6,940 KB
testcase_11 AC 429 ms
6,940 KB
testcase_12 AC 445 ms
6,944 KB
testcase_13 AC 456 ms
6,944 KB
testcase_14 AC 441 ms
6,940 KB
testcase_15 AC 12 ms
6,940 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 12 ms
6,940 KB
testcase_18 AC 12 ms
6,944 KB
testcase_19 AC 12 ms
6,940 KB
testcase_20 AC 9 ms
6,944 KB
testcase_21 AC 9 ms
6,944 KB
testcase_22 AC 5 ms
6,944 KB
testcase_23 AC 17 ms
9,060 KB
testcase_24 AC 8 ms
6,940 KB
testcase_25 AC 7 ms
6,940 KB
testcase_26 AC 13 ms
7,568 KB
testcase_27 AC 9 ms
6,944 KB
testcase_28 AC 8 ms
6,940 KB
testcase_29 AC 17 ms
9,196 KB
testcase_30 AC 9 ms
6,940 KB
testcase_31 AC 9 ms
6,940 KB
testcase_32 AC 10 ms
6,944 KB
testcase_33 AC 10 ms
6,944 KB
testcase_34 AC 10 ms
6,940 KB
testcase_35 AC 10 ms
6,940 KB
testcase_36 AC 9 ms
6,944 KB
testcase_37 AC 10 ms
6,940 KB
testcase_38 AC 9 ms
6,944 KB
testcase_39 AC 9 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
using ll = long long;

vector< int > manacher(const string &s) {
  vector< int > radius(s.size());
  int i = 0, j = 0;
  while(i < s.size()) {
    while(i - j >= 0 && i + j < s.size() && s[i - j] == s[i + j]) {
      ++j;
    }
    radius[i] = j;
    int k = 1;
    while(i - k >= 0 && i + k < s.size() && k + radius[i - k] < j) {
      radius[i + k] = radius[i - k];
      ++k;
    }
    i += k;
    j -= k;
  }
  return radius;
}

void solve() {
    int n,m;
    cin >> n >> m;
    string s;
    cin >> s;

    // 任意のiで分割して回文になるか?
    string t;
    t.push_back('.');
    for (int i = 0; i < s.size(); i++) {
        t.push_back(s[i]);
        t.push_back('.');
    }
    auto ret = manacher(t);
    for (int i = 0; i < t.size(); i++) ret[i]--;

    // cerr << t << endl;

    // 分割した両方が回文になるか?
    int ans = INT_MAX;
    for (int i = 0; i < t.size(); i++) {
        if (i==ret[i]) {
            int j = (t.size()-2*i)/2;
            cerr << i << endl;
            cerr << ret[t.size()-1-j] << ' ' << j << endl;
            if (ret[t.size()-1-j] == j) {
                int tmp_x = (i/2)*2 + (i&1);
                int tmp_y = (j/2)*2 + (j&1);

                if (tmp_x >= m || tmp_y >= m) ans = 1;
                else {
                    ans = min(ans, (m-tmp_x+n-1)/n + 1);
                    ans = min(ans, (m-tmp_y+n-1)/n + 1);
                }
            }
        }
    }

    if (ans != INT_MAX) {
        cout << ans << endl;
        return;
    }
    else {
        // 2個繋げて、回文が出来るか判定
        string ss = s+s;
        string tt;
        tt.push_back('.');
        for (int j = 0; j < ss.size(); j++) {
            tt.push_back(ss[j]);
            tt.push_back('.');
        }

        auto ret2 = manacher(tt);
        for (int j = 0; j < tt.size(); j++) --ret2[j];

        bool one = false;
        for (int j = 0; j < tt.size(); j++) {
            if (((ret2[j]/2)*2 + (j&1)) >= m) {
                // cerr << (ret2[j]/2)*2 + (j&1) << endl;
                cout << 2 << endl;
                return;
            }
            if (ret2[j]*2+1 == tt.size()) one = true;
        }

        if (one) {
            cout << (m+n-1)/n + 1 << endl;
            // cerr << "test" << endl;
            return;
        }

        cout << -1 << endl;
    }


}

int main(void) {
    int t;
    cin >> t;

    // S=1の解が存在するか確かめる
    // 2個連結した時に回文になるかの判定
    // 文字列を回文の組みに分割できるか?

    while (t--) {
        solve();
    }
    
    return 0;
}
0