結果

問題 No.2858 Make a Palindrome
ユーザー GOTKAKOGOTKAKO
提出日時 2024-08-25 16:48:03
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,531 bytes
コンパイル時間 2,298 ms
コンパイル使用メモリ 207,392 KB
実行使用メモリ 15,060 KB
最終ジャッジ日時 2024-08-25 16:48:10
合計ジャッジ時間 6,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
6,816 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 63 ms
6,940 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 39 ms
13,648 KB
testcase_21 WA -
testcase_22 AC 22 ms
8,580 KB
testcase_23 AC 45 ms
13,584 KB
testcase_24 WA -
testcase_25 AC 31 ms
11,584 KB
testcase_26 AC 34 ms
11,520 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 45 ms
14,024 KB
testcase_30 WA -
testcase_31 AC 46 ms
14,696 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 AC 45 ms
14,896 KB
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 44 ms
14,792 KB
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

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;}
        
        s += t;
        auto Ma = Mana2(s);
        for(int i=0; i<2*N; i++) if(Ma.at(i)+N == Ma.at(i+N)){
            int m = Ma.at(i),m2 = m;
            if(i%2) m2--,i--;
            int left = (M-m+N-1)/N;
            answer = (i/2-((m2+1)/2-1)+1)+m-1+left*N;
            answer = (answer+N-1)/N;
            break;
        }
        cout << answer << "\n";
    }
}
0