結果

問題 No.2858 Make a Palindrome
ユーザー shobonvipshobonvip
提出日時 2024-08-25 15:31:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,466 bytes
コンパイル時間 4,339 ms
コンパイル使用メモリ 264,588 KB
実行使用メモリ 15,992 KB
最終ジャッジ日時 2024-08-25 15:32:09
合計ジャッジ時間 10,573 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 603 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 128 ms
6,940 KB
testcase_11 AC 128 ms
6,944 KB
testcase_12 AC 129 ms
6,940 KB
testcase_13 AC 128 ms
6,948 KB
testcase_14 AC 127 ms
6,944 KB
testcase_15 AC 66 ms
6,940 KB
testcase_16 AC 70 ms
6,944 KB
testcase_17 AC 75 ms
6,944 KB
testcase_18 AC 68 ms
6,944 KB
testcase_19 AC 68 ms
6,940 KB
testcase_20 AC 79 ms
14,460 KB
testcase_21 AC 80 ms
14,692 KB
testcase_22 AC 43 ms
9,084 KB
testcase_23 AC 54 ms
14,552 KB
testcase_24 AC 70 ms
12,388 KB
testcase_25 AC 61 ms
11,296 KB
testcase_26 AC 41 ms
10,936 KB
testcase_27 AC 88 ms
15,696 KB
testcase_28 AC 69 ms
11,916 KB
testcase_29 AC 56 ms
14,928 KB
testcase_30 AC 90 ms
15,824 KB
testcase_31 AC 88 ms
15,768 KB
testcase_32 AC 94 ms
15,916 KB
testcase_33 AC 89 ms
15,796 KB
testcase_34 AC 86 ms
15,992 KB
testcase_35 AC 90 ms
15,908 KB
testcase_36 AC 90 ms
15,824 KB
testcase_37 AC 88 ms
15,900 KB
testcase_38 AC 89 ms
15,728 KB
testcase_39 AC 90 ms
15,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

//* ATCODER
#include<atcoder/all>
using namespace atcoder;
typedef modint998244353 mint;
//*/

/* BOOST MULTIPRECISION
#include<boost/multiprecision/cpp_int.hpp>
using namespace boost::multiprecision;
//*/

typedef long long ll;

#define rep(i, s, n) for (int i = (int)(s); i < (int)(n); i++)
#define rrep(i, s, n) for (int i = (int)(n)-1; i >= (int)(s); i--)

template <typename T> bool chmin(T &a, const T &b) {
	if (a <= b) return false;
	a = b;
	return true;
}

template <typename T> bool chmax(T &a, const T &b) {
	if (a >= b) return false;
	a = b;
	return true;
}

template <typename T> T max(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmax(ret, a[i]);
	return ret;
}

template <typename T> T min(vector<T> &a){
	assert(!a.empty());
	T ret = a[0];
	for (int i=0; i<(int)a.size(); i++) chmin(ret, a[i]);
	return ret;
}

template <typename T> T sum(vector<T> &a){
	T ret = 0;
	for (int i=0; i<(int)a.size(); i++) ret += a[i];
	return ret;
}

vector< int > manacher(const string &s) {
  vector< int > radius(s.size());
  int i = 0, j = 0;
  while(i < s.size()) {
    while(i - j >= 0 && i + j < s.size() && s[i - j] == s[i + j]) {
      ++j;
    }
    radius[i] = j;
    int k = 1;
    while(i - k >= 0 && i + k < s.size() && k + radius[i - k] < j) {
      radius[i + k] = radius[i - k];
      ++k;
    }
    i += k;
    j -= k;
  }
  return radius;
}

int max_length_palindrome(string s) {
	vector<int> targ = manacher(s);
	int odd = max(targ) * 2 - 1;

	string t = "";
	rep(i,0,(int)s.size()){
		t += s[i];
		t += '$';
	}
	t.pop_back();
	int even = 0;
	vector<int> tmp = manacher(t);
	for (int i=1; i<(int)tmp.size(); i+=2){
		even = max(even, tmp[i]/2*2);
	}
	return max(odd, even);
}

void solve(){
	int n; cin >> n;
	ll m; cin >> m;
	
	string s; cin >> s;
	if (max_length_palindrome(s) >= m){
		cout << 1 << endl;
		return;
	}

	string t1 = s;
	string t2 = s;
	t2 += s;
	string t3 = s;
	t3 += s;
	t3 += s;

	if (max_length_palindrome(t1) >= m){
		cout << 2 << endl;
		return;
	}

	if (max_length_palindrome(t2) >= m){
		cout << 3 << endl;
		return;
	}

	if (max_length_palindrome(t2) == max_length_palindrome(t3)){
		cout << -1 << endl;
		return;
	}

	ll a = - max_length_palindrome(t2) + max_length_palindrome(t3);
	ll b = max_length_palindrome(t2) - a * 2;
	ll f = (m - b + a - 1) / a;
	cout << f << endl;
}

int main(){

	int t; cin >> t;
	while(t--) solve();
}

0