結果

問題 No.2858 Make a Palindrome
ユーザー 👑 emthrmemthrm
提出日時 2024-08-25 17:34:21
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 117 ms / 3,000 ms
コード長 2,843 bytes
コンパイル時間 3,504 ms
コンパイル使用メモリ 251,596 KB
実行使用メモリ 10,912 KB
最終ジャッジ日時 2024-08-25 17:34:29
合計ジャッジ時間 6,240 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
6,816 KB
testcase_01 AC 45 ms
6,944 KB
testcase_02 AC 44 ms
6,944 KB
testcase_03 AC 45 ms
6,940 KB
testcase_04 AC 46 ms
6,940 KB
testcase_05 AC 38 ms
6,940 KB
testcase_06 AC 32 ms
6,940 KB
testcase_07 AC 32 ms
6,944 KB
testcase_08 AC 34 ms
6,940 KB
testcase_09 AC 35 ms
6,940 KB
testcase_10 AC 42 ms
6,944 KB
testcase_11 AC 39 ms
6,940 KB
testcase_12 AC 42 ms
6,944 KB
testcase_13 AC 40 ms
6,940 KB
testcase_14 AC 44 ms
6,944 KB
testcase_15 AC 24 ms
6,940 KB
testcase_16 AC 24 ms
6,944 KB
testcase_17 AC 25 ms
6,944 KB
testcase_18 AC 25 ms
6,940 KB
testcase_19 AC 24 ms
6,944 KB
testcase_20 AC 28 ms
9,824 KB
testcase_21 AC 28 ms
10,084 KB
testcase_22 AC 16 ms
6,992 KB
testcase_23 AC 27 ms
9,904 KB
testcase_24 AC 24 ms
9,096 KB
testcase_25 AC 21 ms
8,400 KB
testcase_26 AC 22 ms
8,360 KB
testcase_27 AC 29 ms
10,784 KB
testcase_28 AC 22 ms
8,944 KB
testcase_29 AC 28 ms
10,248 KB
testcase_30 AC 30 ms
10,732 KB
testcase_31 AC 32 ms
10,828 KB
testcase_32 AC 30 ms
10,736 KB
testcase_33 AC 28 ms
10,868 KB
testcase_34 AC 29 ms
10,828 KB
testcase_35 AC 26 ms
10,912 KB
testcase_36 AC 28 ms
10,840 KB
testcase_37 AC 30 ms
10,868 KB
testcase_38 AC 31 ms
10,904 KB
testcase_39 AC 29 ms
10,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define FOR(i,m,n) for(int i=(m);i<(n);++i)
#define REP(i,n) FOR(i,0,n)
using ll = long long;
constexpr int INF = 0x3f3f3f3f;
constexpr long long LINF = 0x3f3f3f3f3f3f3f3fLL;
constexpr double EPS = 1e-8;
constexpr int MOD = 998244353;
// constexpr int MOD = 1000000007;
constexpr int DY4[]{1, 0, -1, 0}, DX4[]{0, -1, 0, 1};
constexpr int DY8[]{1, 1, 0, -1, -1, -1, 0, 1};
constexpr int DX8[]{0, -1, -1, -1, 0, 1, 1, 1};
template <typename T, typename U>
inline bool chmax(T& a, U b) { return a < b ? (a = b, true) : false; }
template <typename T, typename U>
inline bool chmin(T& a, U b) { return a > b ? (a = b, true) : false; }
struct IOSetup {
  IOSetup() {
    std::cin.tie(nullptr);
    std::ios_base::sync_with_stdio(false);
    std::cout << fixed << setprecision(20);
  }
} iosetup;

struct Manacher {
  template <typename T>
  explicit Manacher(const T& s) {
    T str;
    int n = s.size();
    str.reserve(n * 2 + 1);
    for (int i = 0; i < n; ++i) {
      str.push_back(s[i]);
      str.push_back('$');
    }
    str.pop_back();
    n = str.size();
    radius.resize(n);
    for (int i = 0, j = 1; i < n;) {
      while (i - j >= 0 && i + j < n && str[i - j] == str[i + j]) ++j;
      radius[i] = j;
      int k = 1;
      for (; i - k >= 0 && i + k < n && k + radius[i - k] < j; ++k) {
        radius[i + k] = radius[i - k];
      }
      i += k;
      j -= k;
    }
  }

  int odd(const int idx) const { return (radius[idx * 2] + 1) / 2; }

  int even(const int idx) const { return radius[idx * 2 + 1] / 2; }

  bool is_palindrome(const int left, const int right) const {
    const int mid = (left + right - 1) / 2;
    return ((right - left) & 1 ? odd(mid) * 2 - 1 : even(mid) * 2)
           >= right - left;
  }

 private:
  std::vector<int> radius;
};

int solve(const int m, string s) {
  const int n = s.length();
  for (int op = 1; op <= 3; ++op) {
    string u = "";
    REP(_, op) u += s;
    const Manacher manacher(u);
    REP(i, n * op) {
      if ((manacher.odd(i) - 1) * 2 + 1 >= m) return op;
    }
    REP(i, n * op - 1) {
      if (manacher.even(i) * 2 >= m) return op;
    }
  }
  if (m * 2 <= n) return -1;
  Manacher manacher(s + s + s);
  int ans = INF;
  REP(i, n) {
    if ((manacher.odd(i + n) - 1) * 2 + 1 >= n) {
      chmin(ans, 1 + (m / 2 - i + n - 1) / n + (m / 2 - (n - 1 - i) + n - 1) / n);
    }
  }
  REP(i, n - 1) {
    if (manacher.even(i + n) * 2 >= n) {
      chmin(ans, 1 + ((m + 1) / 2 - (i + 1) + n - 1) / n + ((m + 1) / 2 - (n - 1 - i) + n - 1) / n);
    }
  }
  if (manacher.is_palindrome(0, n)) chmin(ans, ((m + 1) / 2 + n - 1) / n + ((m + 1) / 2 + n - 1) / n);
  return ans == INF ? -1 : ans;
}

int main() {
  int t; cin >> t;
  while (t--) {
    int n, m; string s; cin >> n >> m >> s;
    cout << solve(m, s) << '\n';
  }
  return 0;
}
0