結果

問題 No.1695 Mirror Mirror
ユーザー vwxyzvwxyz
提出日時 2024-12-17 05:11:17
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 3,080 bytes
コンパイル時間 7,563 ms
コンパイル使用メモリ 277,636 KB
実行使用メモリ 21,716 KB
最終ジャッジ日時 2024-12-17 05:13:09
合計ジャッジ時間 109,893 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
13,640 KB
testcase_01 AC 1 ms
15,032 KB
testcase_02 AC 2 ms
13,632 KB
testcase_03 AC 1 ms
14,904 KB
testcase_04 AC 2 ms
13,636 KB
testcase_05 AC 2 ms
13,640 KB
testcase_06 AC 2 ms
13,636 KB
testcase_07 AC 1 ms
13,632 KB
testcase_08 AC 3 ms
13,436 KB
testcase_09 AC 2 ms
13,280 KB
testcase_10 AC 2 ms
13,636 KB
testcase_11 AC 2 ms
13,284 KB
testcase_12 AC 2 ms
13,768 KB
testcase_13 AC 1 ms
13,636 KB
testcase_14 AC 3 ms
11,428 KB
testcase_15 AC 2 ms
11,300 KB
testcase_16 AC 2 ms
13,632 KB
testcase_17 AC 2 ms
13,760 KB
testcase_18 AC 2 ms
12,512 KB
testcase_19 AC 2 ms
13,636 KB
testcase_20 AC 2 ms
13,636 KB
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 AC 2 ms
13,636 KB
testcase_27 AC 2 ms
11,996 KB
testcase_28 AC 10 ms
13,636 KB
testcase_29 AC 1 ms
11,740 KB
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 TLE -
testcase_37 TLE -
testcase_38 TLE -
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 TLE -
testcase_43 TLE -
testcase_44 TLE -
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 AC 15 ms
12,900 KB
testcase_51 AC 18 ms
13,640 KB
testcase_52 AC 11 ms
13,648 KB
testcase_53 AC 11 ms
13,636 KB
testcase_54 AC 10 ms
13,216 KB
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 AC 2 ms
21,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//#undef LOCAL
#include <bits/stdc++.h>
using namespace std;
using uint = unsigned int;
using ll = long long;
using ull = unsigned long long;
template<class T> using V = vector<T>;
template<class T> using VV = V<V<T>>;
constexpr ll TEN(int n) { return (n == 0) ? 1 : 10 * TEN(n-1); }
#define FOR(i, a, b) for(int i=(int)(a);i<(int)(b);i++)
#define rep(i,N) for(int i=0;i<(int)(N);i++)
#define rep1(i,N) for(int i=1;i<=(int)(N);i++)
#define fs first
#define sc second
#define eb emplace_back
#define pb eb
#define all(x) x.begin(),x.end()
template<class T, class U> void chmin(T& t, const U& u) { if (t > u) t = u; }
template<class T, class U> void chmax(T& t, const U& u) { if (t < u) t = u; }
#ifdef LOCAL
#define show(x) cerr << __LINE__ << " : " << #x << " = " << (x) << endl
#else
#define show(x) true
#endif
template <class T, class U>
ostream& operator<<(ostream& os, const pair<T, U>& p) {
 return os << "P(" << p.first << ", " << p.second << ")";
}
template <class T> ostream& operator<<(ostream& os, const V<T>& v) {
 os << "[";
 for (auto d : v) os << d << ", ";
 return os << "]";
}
// cin.tie(nullptr);
// ios::sync_with_stdio(false);
// cout << fixed << setprecision(20);


//境界iを中心とする最長回文の長さ/2
template <class S> V<int> manacher(const S& s) {
  int n = int(s.size());
  V<int> r(n);
  if (n == 0) return r;
  r[0] = 1;
  for (int i = 1, j = 0; i < n; i++) {
    int& k = r[i];
    k = (j + r[j] <= i) ? 0 : min(j + r[j] - i, r[2 * j - i]);
    while (0 <= i - k && i + k < n && s[i - k] == s[i + k]) k++;
    if (j + r[j] < i + r[i]) j = i;
  }
  return r;
}

//文字iを中心とする最長回文の長さ
template <class S> V<int> manacher_even(const S& s) {
  int n = int(s.size());
  V<int> r(n + 1);
  for (int i = 1, j = 0; i < n; i++) {
    int& k = r[i];
    k = (j + r[j] <= i) ? 0 : min(j + r[j] - i, r[2 * j - i]);
    while (0 <= i - 1 - k && i + k < n && s[i - 1 - k] == s[i + k]) k++;
    if (j + r[j] < i + r[i]) j = i;
    }
  return r;
}

int main() {
  int N,M;cin>>N>>M;
  string S,T;cin>>S>>T;
  bool bl=M%2==0;
  for(int m=0;m<M;m++){
    if(T[m]!=T[M-1-m]){
      bl=false;
    }
  }
  const int inf=1<<30;
  int ans=inf;
  if(bl){
    vector<int> man=manacher_even(T),pal(M+1);
    for(int m=0;m<M+1;m++){
      pal[m]=m;
    }
    int r=0;
    for(int m=0;m<M+1;m++){
      while(r<=m+man[m]){
        pal[r]=m;
        r+=1;
      }
      if(S==T){
        ans=0;
      }
      else{
        for(int _=0;_<2;_++){
          int le=0;
          for(int i=0;i<min(S.size(),T.size());i++){
            if(S[i]==T[i]){
              le+=1;
            }
            else{
              break;
            }
          }
          int cnt=0,cur=M;
          while(1){
            if(le*2>=cur){
              ans=min(ans,cnt+1);
              break;
            }
            if(cur<=pal[cur/2]*2){
              break;
            }
            cur=pal[cur/2]*2;
            cnt+=1;
          }
          reverse(S.begin(),S.end());
        }
      }
    }
  }
  if(ans==inf){
    ans=-1;
  }
  cout<<ans<<"\n";
}
0