結果

問題 No.2858 Make a Palindrome
ユーザー テナガザルテナガザル
提出日時 2024-08-25 15:00:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,120 bytes
コンパイル時間 1,063 ms
コンパイル使用メモリ 97,500 KB
実行使用メモリ 16,732 KB
最終ジャッジ日時 2024-08-25 15:00:48
合計ジャッジ時間 5,332 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 101 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 AC 30 ms
6,940 KB
testcase_16 WA -
testcase_17 AC 29 ms
6,940 KB
testcase_18 AC 29 ms
6,940 KB
testcase_19 AC 29 ms
6,940 KB
testcase_20 AC 37 ms
14,440 KB
testcase_21 AC 35 ms
14,536 KB
testcase_22 AC 20 ms
9,228 KB
testcase_23 AC 39 ms
14,388 KB
testcase_24 AC 33 ms
12,924 KB
testcase_25 AC 27 ms
11,776 KB
testcase_26 AC 28 ms
11,300 KB
testcase_27 AC 40 ms
15,736 KB
testcase_28 AC 30 ms
12,824 KB
testcase_29 AC 41 ms
14,780 KB
testcase_30 AC 38 ms
15,856 KB
testcase_31 AC 37 ms
16,184 KB
testcase_32 AC 39 ms
16,100 KB
testcase_33 AC 39 ms
16,204 KB
testcase_34 AC 38 ms
16,040 KB
testcase_35 AC 42 ms
16,732 KB
testcase_36 AC 39 ms
15,912 KB
testcase_37 AC 36 ms
16,136 KB
testcase_38 AC 39 ms
16,340 KB
testcase_39 AC 38 ms
15,948 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, (2 * v - 1) / 2);
    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