結果

問題 No.2858 Make a Palindrome
ユーザー mitanimitani
提出日時 2024-08-25 15:09:56
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,553 bytes
コンパイル時間 3,778 ms
コンパイル使用メモリ 232,472 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-25 15:10:03
合計ジャッジ時間 6,991 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 400 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 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 5 ms
6,940 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 AC 4 ms
6,940 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 6 ms
6,940 KB
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#define rep(i,n) for(ll i=0;i<(ll)(n);i++)
#define all(x) x.begin(), x.end()
using namespace std;
using ll=long long;
using ld=long double;
using P=pair<ll,ll>;
#include <atcoder/all>
using namespace atcoder;
//using mint=static_modint<998244353>;
using mint=static_modint<1000000007>;
////using mint=modint;
//#pragma GCC target("avx2")
//#pragma GCC optimize("O3")
//#pragma GCC optimize("unroll-loops")

int inf=2147483647;
ll INF=9223372036854775807;
const ld PI=acos(-1);

void yn(bool f){
	if(f)cout<<"Yes"<<endl;
	else cout<<"No"<<endl;
	return;
}

ll n,m;

bool in(int x,int y){
	if(x<0||n<=x)return false;
	if(y<0||m<=y)return false;
	return true;
}

vector<int> dx={1,-1,0,0};
vector<int> dy={0,0,1,-1};

bool isp(string s){
	rep(i,s.size())if(s[i]!=s[s.size()-1-i])return false;
	return true;
}

void solve(){
	int n,m;cin>>n>>m;
	string s;cin>>s;

	if(isp(s)){
		cout<<(n+m-1)/n<<endl;
		return;
	}

	if(isp(s.substr(1,s.size()-1))||isp(s.substr(0,s.size()-1))){
		ll lb=0,ub=1e9;
		while(lb+1<ub){
			ll md=(lb+ub)/2;
			if(n*md>=m+1)ub=md;
			else lb=md;
		}
		cout<<ub<<endl;
		return;
	}

	else{
		ll ans=0;
		ll cru=0;
		int l=0,r=s.size()-1;
		while(s[l]==s[r]){
			l++;
			r--;
			cru+=2;
		}
		ans=max(ans,cru);
		l=1,r=s.size()-1;
		while(s[l]==s[r]){
			l++;
			r--;
			cru+=2;
		}
		ans=max(ans,cru);
		l=0,r=s.size()-2;
		while(s[l]==s[r]){
			l++;
			r--;
			cru+=2;
		}
		ans=max(ans,cru);
		if(ans>=m)cout<<2<<endl;
		else cout<<-1<<endl;
		return;
	}

}

int main(){
	ll n;cin>>n;
	rep(i,n)solve();
}
0