結果

問題 No.2858 Make a Palindrome
ユーザー テナガザルテナガザル
提出日時 2024-08-25 15:17:30
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 502 ms / 3,000 ms
コード長 1,116 bytes
コンパイル時間 1,222 ms
コンパイル使用メモリ 97,492 KB
実行使用メモリ 16,304 KB
最終ジャッジ日時 2024-08-25 15:17:36
合計ジャッジ時間 5,825 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
6,816 KB
testcase_01 AC 125 ms
6,940 KB
testcase_02 AC 124 ms
6,940 KB
testcase_03 AC 123 ms
6,944 KB
testcase_04 AC 125 ms
6,940 KB
testcase_05 AC 103 ms
6,944 KB
testcase_06 AC 79 ms
6,940 KB
testcase_07 AC 80 ms
6,940 KB
testcase_08 AC 81 ms
6,940 KB
testcase_09 AC 80 ms
6,944 KB
testcase_10 AC 83 ms
6,940 KB
testcase_11 AC 83 ms
6,944 KB
testcase_12 AC 84 ms
6,944 KB
testcase_13 AC 83 ms
6,944 KB
testcase_14 AC 84 ms
6,944 KB
testcase_15 AC 32 ms
6,944 KB
testcase_16 AC 32 ms
6,940 KB
testcase_17 AC 31 ms
6,944 KB
testcase_18 AC 32 ms
6,940 KB
testcase_19 AC 32 ms
6,940 KB
testcase_20 AC 37 ms
14,696 KB
testcase_21 AC 38 ms
14,536 KB
testcase_22 AC 23 ms
9,216 KB
testcase_23 AC 42 ms
14,272 KB
testcase_24 AC 34 ms
12,944 KB
testcase_25 AC 31 ms
11,772 KB
testcase_26 AC 32 ms
11,376 KB
testcase_27 AC 42 ms
16,036 KB
testcase_28 AC 34 ms
12,824 KB
testcase_29 AC 43 ms
14,848 KB
testcase_30 AC 42 ms
16,016 KB
testcase_31 AC 43 ms
16,064 KB
testcase_32 AC 41 ms
16,176 KB
testcase_33 AC 44 ms
15,996 KB
testcase_34 AC 42 ms
16,064 KB
testcase_35 AC 42 ms
16,044 KB
testcase_36 AC 41 ms
15,888 KB
testcase_37 AC 42 ms
15,900 KB
testcase_38 AC 44 ms
15,888 KB
testcase_39 AC 41 ms
16,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

vector<int> kai(string &s)
{
  int n = s.size(), c = 0;
  vector<int> ret(n);
  for (int i = 0; i < n; ++i)
  {
    int l = 2 * c - i;
    if (c + ret[c] > i + ret[l]) ret[i] = ret[l];
    else
    {
      int j = max(c + ret[c] - i, 0);
      while (i - j >= 0 && i + j < n && s[i - j] == s[i + j]) ++j;
      ret[i] = j;
      c = i;
    }
  }
  return ret;
}

void solve()
{
  int n, m;
  cin >> n >> m;
  string s;
  cin >> s;
  string tmp(2 * n, '#');
  for (int i = 0; i < n; ++i) tmp[2 * i] = s[i];
  string st = "#";
  int a[5] = {-1, -1, -1, -1, -1};
  for (int i = 0; i < 5; ++i)
  {
    st += tmp;
    auto res = kai(st);
    int val = -1;
    for (auto v : res) val = max(val, v - 1);
    a[i] = val;
  }
  for (int i = 0; i < 5; ++i)
  {
    if (a[i] >= m)
    {
      cout << i + 1 << endl;
      return;
    }
  }
  int d = a[4] - a[3];
  if (d == 0)
  {
    cout << -1 << endl;
    return;
  }
  int ans = (m - a[3] + d - 1) / d + 4;
  cout << ans << endl;
}

int main()
{
  int t;
  cin >> t;
  while (t--) solve();
}
0