結果

問題 No.2858 Make a Palindrome
ユーザー GOTKAKOGOTKAKO
提出日時 2024-08-25 17:07:50
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 131 ms / 3,000 ms
コード長 1,498 bytes
コンパイル時間 2,523 ms
コンパイル使用メモリ 205,944 KB
実行使用メモリ 12,788 KB
最終ジャッジ日時 2024-08-25 17:07:56
合計ジャッジ時間 6,352 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
6,812 KB
testcase_01 AC 62 ms
6,944 KB
testcase_02 AC 62 ms
6,940 KB
testcase_03 AC 66 ms
6,944 KB
testcase_04 AC 64 ms
6,944 KB
testcase_05 AC 57 ms
6,940 KB
testcase_06 AC 50 ms
6,940 KB
testcase_07 AC 54 ms
6,944 KB
testcase_08 AC 53 ms
6,944 KB
testcase_09 AC 52 ms
6,940 KB
testcase_10 AC 54 ms
6,940 KB
testcase_11 AC 55 ms
6,940 KB
testcase_12 AC 53 ms
6,944 KB
testcase_13 AC 59 ms
6,940 KB
testcase_14 AC 58 ms
6,940 KB
testcase_15 AC 35 ms
6,944 KB
testcase_16 AC 36 ms
6,940 KB
testcase_17 AC 35 ms
6,944 KB
testcase_18 AC 36 ms
6,944 KB
testcase_19 AC 35 ms
6,940 KB
testcase_20 AC 36 ms
11,724 KB
testcase_21 AC 38 ms
11,912 KB
testcase_22 AC 21 ms
7,640 KB
testcase_23 AC 40 ms
11,752 KB
testcase_24 AC 32 ms
10,128 KB
testcase_25 AC 29 ms
9,288 KB
testcase_26 AC 29 ms
8,868 KB
testcase_27 AC 40 ms
12,624 KB
testcase_28 AC 35 ms
9,668 KB
testcase_29 AC 42 ms
12,104 KB
testcase_30 AC 42 ms
12,616 KB
testcase_31 AC 43 ms
12,712 KB
testcase_32 AC 40 ms
12,760 KB
testcase_33 AC 42 ms
12,736 KB
testcase_34 AC 42 ms
12,776 KB
testcase_35 AC 43 ms
12,640 KB
testcase_36 AC 42 ms
12,776 KB
testcase_37 AC 40 ms
12,612 KB
testcase_38 AC 40 ms
12,632 KB
testcase_39 AC 40 ms
12,788 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

vector<int> Mana(string &s){ //Manacher
    int n = s.size();
    vector<int> ret(n);
    for(int i=0,w=0; i<n;){
        while(i+w < n && i-w >= 0 && s.at(i-w) == s.at(i+w)) w++;
        ret.at(i) = w;
        int k = 1;
        while(i-k >= 0 && k+ret.at(i-k) < w) ret.at(i+k) = ret.at(i-k),k++;
        i += k; w -= k;
    }  
    return ret;
}
vector<int> Mana2(string s){ //偶数長検出用.
    string t = "";
    for(auto &c : s) t += c,t += '$';
    t.pop_back();
    vector<int> ret = Mana(t); //M[i%2 == 0]=偶数は-1,M[i%2 == 1]=奇数は-1.
    for(int i=0; i<ret.size(); i++) if(i%2 == ret.at(i)%2) ret.at(i)--;
    return ret;
}

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

    int T; cin >> T;
    while(T--){
        int N,M; cin >> N >> M;
        string t; cin >> t;
        string s;
        int answer = -1;
        for(int i=0; i<3; i++){
            s += t;
            auto Ma = Mana2(s);
            for(auto &m : Ma) if(m >= M) answer = i+1;
            if(answer != -1) break;
        }
        if(answer != -1){cout << answer << endl; continue;}
        
        auto Ma = Mana2(s);
        answer = 1001001001;
        for(int i=2*N-1; i<4*N-2; i++) if(Ma.at(i) >= N){
            int first = Ma.at(i)%N;
            if(first == 0) first = N;
            answer = min(answer,(M-first+N-1)/N+1);
        }
        if(answer == 1001001001) answer = -1;
        cout << answer << "\n";
    }
}
0