結果

問題 No.1695 Mirror Mirror
ユーザー eSeFeSeF
提出日時 2021-08-10 06:16:19
言語 C++17(clang)
(17.0.6 + boost 1.87.0)
結果
AC  
実行時間 142 ms / 2,000 ms
コード長 1,530 bytes
コンパイル時間 7,340 ms
コンパイル使用メモリ 179,712 KB
実行使用メモリ 12,584 KB
最終ジャッジ日時 2024-12-29 20:04:26
合計ジャッジ時間 11,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 1 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 2 ms
5,248 KB
testcase_21 AC 142 ms
12,460 KB
testcase_22 AC 142 ms
12,584 KB
testcase_23 AC 89 ms
11,980 KB
testcase_24 AC 125 ms
11,852 KB
testcase_25 AC 23 ms
9,864 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 12 ms
5,248 KB
testcase_29 AC 1 ms
5,248 KB
testcase_30 AC 27 ms
10,224 KB
testcase_31 AC 43 ms
11,412 KB
testcase_32 AC 18 ms
5,504 KB
testcase_33 AC 90 ms
11,688 KB
testcase_34 AC 44 ms
7,424 KB
testcase_35 AC 79 ms
10,984 KB
testcase_36 AC 87 ms
12,256 KB
testcase_37 AC 40 ms
7,096 KB
testcase_38 AC 90 ms
10,944 KB
testcase_39 AC 31 ms
6,820 KB
testcase_40 AC 106 ms
11,552 KB
testcase_41 AC 123 ms
12,136 KB
testcase_42 AC 36 ms
12,248 KB
testcase_43 AC 33 ms
10,144 KB
testcase_44 AC 29 ms
10,652 KB
testcase_45 AC 23 ms
9,804 KB
testcase_46 AC 77 ms
10,356 KB
testcase_47 AC 64 ms
10,292 KB
testcase_48 AC 79 ms
11,668 KB
testcase_49 AC 112 ms
12,288 KB
testcase_50 AC 15 ms
5,248 KB
testcase_51 AC 19 ms
5,248 KB
testcase_52 AC 11 ms
5,248 KB
testcase_53 AC 12 ms
5,248 KB
testcase_54 AC 11 ms
5,248 KB
testcase_55 AC 26 ms
9,700 KB
testcase_56 AC 32 ms
10,360 KB
testcase_57 AC 46 ms
9,924 KB
testcase_58 AC 34 ms
11,212 KB
testcase_59 AC 33 ms
10,672 KB
testcase_60 AC 31 ms
9,912 KB
testcase_61 AC 15 ms
7,124 KB
testcase_62 AC 24 ms
11,816 KB
testcase_63 AC 40 ms
11,948 KB
testcase_64 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
const int INF = 1<<30;
vector<int> manacher(string s){
    int i = 0, j = 0;
    vector<int>ret(s.size());
    while(i < s.size()){
        while(i-j>=0&&i+j<s.size()&&s[i-j]==s[i+j])j++;
        ret[i] = j;
        int k = 1;
        while(i-k>=0&&k+ret[i-k]<j)ret[i+k]=ret[i-k],++k;
        i+=k;j-=k;
    }
    return ret;
}
int mn(int l,int r){
    return min(l,r);
}
int inf(){
    return INF;
}
int main(){
    int N, M;
    cin >> N >> M;
    string S, T;
    cin >> S;
    cin >> T;

    if(M%2==1){cout << -1 << endl;return 0;}
    for(int i=0;i<M/2;i++){
        if(T[i]!=T[M-1-i]){
            cout << -1 << endl;
            return 0;
        }
    }
    M/=2;
    T = T.substr(0,M);
    int INF = 1<<30;
    vector<int>v(M,INF);
    for(int i=0;i<N;i++){
        if(i>=M||S[i]!=T[i])break;
        v[i] = 1;
    }
    for(int i=0;i<N;i++){
        if(i>=M||S[N-1-i]!=T[i])break;
        v[i] = 1;
    }
    
    lazy_segtree<int,mn,inf,int,mn,mn,inf>dp(v);
    string tt = "";
    for(int i=0;i<M;i++){
        tt += T[i];
        tt += '@';
    }
    vector<int>mc = manacher(tt);
    vector<int>R(M);
    for(int i=0;i<M;i++){
        R[i] = mc[2*i+1]/2;
    }

    for(int i=0;i<M;i++){
        if(R[i]==0)continue;
        int m = dp.get(i);
        dp.apply(i+1,min(M,i+1+R[i]),m+1);
    }
    
    int ans = dp.get(M-1);
    if(ans == INF)ans = -1;
    cout << ans << endl;
    

    return 0;
}
0